Datetime show only the month

0
How can i put the month of the date time in microflow variable and then change it to an integer
asked
1 answers
1

I assume you want this:

 

January → 1

February → 2

March → 3

 

This expression does just that:

parseInteger(formatDateTime($yourDate, 'M'))

 

answered