So the function =Now()....is there a way I can use this and only get the date, not the time?
=Now()
or is there just a function for this idea?
DateValue(CStr(Now()))
That's the best I've found. If you have the date as a string already you can just do:
DateValue("12/04/2012 04:56:15")
or
DateValue(*DateStringHere*)
Hope this helps someone...