Appian month to text conversion issue I am using this command month(today()) ---> it print current month
after this i am plan to convert this as a text format like
text(month(today()),"MMM") my output is something different
let me know the cause of this
Discussion posts and replies are publicly visible
month() returns an integer. Then, text() does not treat it as a date and does not understand how to interpret your formatting string.
Use this instead: text(today(), "MMM")