Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Date format in Header of Table

I am trying to get the header in the table to say Mar 2013, but when I use the following formula I get the date number.

$(=max(MonthName(CalendarWrittenDate))) Sales

See attachment

1 Solution

Accepted Solutions
CELAMBARASAN
Partner - Champion
Partner - Champion

You have to use in reverse

$(=MonthName(max(CalendarWrittenDate))) Sales

Max() return numbers only.

Hope it helps

Celambarasan

View solution in original post

2 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

You have to use in reverse

$(=MonthName(max(CalendarWrittenDate))) Sales

Max() return numbers only.

Hope it helps

Celambarasan

Not applicable
Author

Worked Great, THANKS