Hi, Domac.
> What is the best way to convert return value of Now() function to pure
> Date
Instead of converting the value returned from the Now( ) function, you'd use
the Date( ) function in your code. However, if you want to convert a
Date/Time value that has already been stored in the table by using the
Now( ) function, then use the DateValue( ) function. For example:
SELECT IIF(ISNULL(SomeDate), NULL, DateValue(SomeDate)) AS TheDate
FROM tblStuff;
HTH.
Gunny
See
http://www.QBuilt.com for all your database needs.
See
http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact
info.
"Domac" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Hi,
>
> What is the best way to convert return value of Now() function to pure
> Date (21.062006. 15:30 => 21.06.2006.)??
>
>
> Thanks!
> Domagoj
>