Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

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...
  • SivaMani's avatar
    6 years ago

    Anonymous ,

     

    Please do try this -

    NowDatetime = Format(NOW(), "DD/MM/YYYY") or 

    NowDatetime = Format(TODAY(), "DD/MM/YYYY")

     

    Thanks,

    Siva