Hello,

I need to re-set whatever date is entered in a cell to the first of
that month. For example if someone enters 9/11/2008, I need it to be
re-set to 9/1/2008.
Is this possible, and if so, can you please tell me how to do it??

thanks in advance!

Re: Re-set a date to the first of the month by Dave

Dave
Fri Oct 10 18:40:36 CDT 2008

You could use a formula in another cell:
=date(year(a1),month(a1),1)
or
=a1-day(a1)+1

Then copy|paste special|values over the original range (a column???)

OS wrote:
>
> Hello,
>
> I need to re-set whatever date is entered in a cell to the first of
> that month. For example if someone enters 9/11/2008, I need it to be
> re-set to 9/1/2008.
> Is this possible, and if so, can you please tell me how to do it??
>
> thanks in advance!

--

Dave Peterson

Re: Re-set a date to the first of the month by OS

OS
Fri Oct 10 18:55:56 CDT 2008

On Oct 10, 4:40=A0pm, Dave Peterson <peter...@verizonXSPAM.net> wrote:
> You could use a formula in another cell:
> =3Ddate(year(a1),month(a1),1)
> or
> =3Da1-day(a1)+1
>
> Then copy|paste special|values over the original range (a column???)
>
> OS wrote:
>
> > Hello,
>
> > I need to re-set whatever date is entered in a cell to the first of
> > that month. =A0For example if someone enters 9/11/2008, I need it to be
> > re-set to 9/1/2008.
> > Is this possible, and if so, can you please tell me how to do it??
>
> > thanks in advance!
>
> --
>
> Dave Peterson

Hi Dave,

Both ways worked!! Thank you!