Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Show current month name

I have a card that I would like to display the current month name.  I.e. today is 04/07/2022 and I would like it to read July.   I have created the following measure: Current_month = Month(Now())...
  • Jos_Woolley's avatar
    4 years ago

    Hi,

    Remove the MONTH function, i.e. use:

    Current_month = Format(Now(),"MMMM")

    Regards