Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi,
I have a date field in this format "DD/MM/YYYY hh:mm:ss AM" .now I need to extract only date from this filed.
when I am sing the date function to extract am getting Multiple values for same date since the Time is different for tht. How can I get distinct date in date field??
Kindly suggest!!...
Regards;
Reena
Try this:
date(floor(MyTimeStampField), 'DD-MM-YYYY')
Thanks,
AS
use date(floor(time stamp)) while loading the date...
Hi,
USe floor() inside date()
try like
date(floor(datefield))
Regards
yea...with floor it worked.. !!! Thanks a lot..
If it is working fine , please close the thread !
Thanks,
AS