Forum Discussion
Anonymous
4 years agoNot applicable
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())...
- 4 years ago
Hi,
Remove the MONTH function, i.e. use:
Current_month = Format(Now(),"MMMM")Regards
Jos_Woolley
4 years agoSolution Sage
Hi,
Remove the MONTH function, i.e. use:
Current_month = Format(Now(),"MMMM")Regards