Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In my data I have a mix of timestamps and dates. When I floor this to try and return all entries at dates. It appears only the entries that are dates in the original data are returned. None of the timestamp entries show.
date(floor([Completed Date]),'MM/DD/YYYY') as [Completed Date]
Is that the same Flooring mixed timestamp and date data
You will have to use alternate formats.. using one may not be sufficient
ex:
Date(Floor(Alt(Date#(YourDate,'MM/DD/YYYY''),TimeStamp#(YourDate,'MM/DD/YYYY hh:mm:ss''),other formats)))
hth
Sasi