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
Can you tell what you are expecting as output? ,It's not gonna give "Apr" because you are passing integer value as a parameter instead of date time .
text(today(),"MMM")
Go with this