Hi. I need the "now()" syntax to only return the date, without the time stamp.
Is this possible? Help would be much appreciated.
Many thanks

Signature
Callan
John.Greenan - 07 Oct 2005 10:51 GMT
You should wrap up now() in a format call
ie format(now(),"dd/mm/yy")
returns 07/10/05 for the 7th October 2005 if you are running with English
date settings.

Signature
www.alignment-systems.com
> Hi. I need the "now()" syntax to only return the date, without the time stamp.
> Is this possible? Help would be much appreciated.
> Many thanks
Callan - 07 Oct 2005 10:55 GMT
Thanks. That did the trick.
Much Appreciated.

Signature
Callan
> You should wrap up now() in a format call
>
[quoted text clipped - 6 lines]
> > Is this possible? Help would be much appreciated.
> > Many thanks
Bob Umlas - 07 Oct 2005 12:04 GMT
Use =TODAY()
Bob Umlas
Excel MVP
> Hi. I need the "now()" syntax to only return the date, without the time
> stamp.
> Is this possible? Help would be much appreciated.
> Many thanks
Ron Rosenfeld - 07 Oct 2005 14:45 GMT
>Hi. I need the "now()" syntax to only return the date, without the time stamp.
>Is this possible? Help would be much appreciated.
>Many thanks
You could use:
=TODAY()
=INT(NOW())
--ron
Robb27 - 19 Sep 2006 09:42 GMT
You can format the cell where the formula is as...Time. - Kills the date and
shows only the time.
> Hi. I need the "now()" syntax to only return the date, without the time stamp.
> Is this possible? Help would be much appreciated.
> Many thanks