Month Name From CurrentDate

0
Hello, how to get the month name from [%CurrentDateTime%] for example , I want to get Aug or August here. Please help
asked
1 answers
2

Please check https://docs.mendix.com/refguide/parse-and-format-date-function-calls#3-formatdatetime-utc

In your case it could be formatDateTime([%CurrentDateTime%], ‘MMM’) for Aug or formatDateTime([%CurrentDateTime%], ‘MMMM’) for August

answered