I want to get month data like Jan,Feb,Mar from 10/01/2022 --dd/mm/yyyy

0
Hi, I want to get month data like Jan,Feb,Mar from 10/01/2022 --dd/mm/yyyy and data type is “date and time” so, how can we do this in microflow please help  
asked
1 answers
0

Hi,

have a look at the documentation : https://docs.mendix.com/refguide/parse-and-format-date-function-calls

what you are looking for is ‘MMM’ .

formatDateTime($dateTime, ‘MMM’)

 

an overview of simple date formats can be found here: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/text/SimpleDateFormat.html

answered