Hi,
I am receiving date in the format like : 25SEP
I want to format it in this format : 25th September
Is there a way to do it ?
Discussion posts and replies are publicly visible
a!localVariables( local!dateTextValue: "SEP25", local!months: { "JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC" }, local!monthKey: left(local!dateTextValue, 3), local!month: wherecontains(local!monthKey, local!months), local!day: mid( local!dateTextValue, 4, len(local!dateTextValue) - 3 ), text( date(year(now()), local!month, local!day), "mmmm ddd" ) )