GarimaGakhar1
06-09-2020
I wish to display the Month Name for the incoming date values.
The in-built 'Month(<Date>)' function will fetch the Month number and not the Month name.
I browsed through some online documentation and was able to get hold of this:https://docs.adobe.com/content/help/en/campaign-classic/technicalresources/api/f-formatDate.htmlBut this seems to be applicable only for Classic and not Standard. I tried using these options in ACS, but they don't work.
Any idea how we could output Month Name in ACS Workflows results?
ramon_bisswange
Employee
07-09-2020
There is no function to do this directly.
What you could do is an expression like:
Iif(Month(<Date>)= '1', 'January', Iif(Month(<Date>)= '2', 'February', ...))