Forum Discussion
Anonymous
6 years agoNot applicable
NowDatetime = NOW() Measure But only return DD/MM/YYYY format?
Hello everyone! I have a measure which returns todays date for my report however it gives me a full time stamp including the hours of the day like so: 11/12/2019 09:50 AM while I only wan...
- 6 years ago
Anonymous ,
Please do try this -
NowDatetime = Format(NOW(), "DD/MM/YYYY") or
NowDatetime = Format(TODAY(), "DD/MM/YYYY")
Thanks,
Siva
SivaMani
6 years agoResident Rockstar
Anonymous ,
Please do try this -
NowDatetime = Format(NOW(), "DD/MM/YYYY") or
NowDatetime = Format(TODAY(), "DD/MM/YYYY")
Thanks,
Siva