Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
Can someone please help me out with a solution to get the actual Month Name instead of the number?
=only({<[AA_DAD_M_SC.YearInt] = {$(=Max([AA_DAD_M_SC.YearInt]))}>} [AA_DAD_M_SC.YearInt])&' Month '&max({<[AA_DAD_M_SC.YearInt] = {$(=Max([AA_DAD_M_SC.YearInt]))}>} Month_Name)&' Visits'
As my database will continue to update itself on a Monthly basis I want the formula to capture also the name of the month based on the last month available in my report.
I've tried to get the MonthName & Month directly from the Load Editor but despite the Month Name actually showing as a filter correctly ... when using it in the formula is still number 😞
Thanks in advance !
Try MaxString() instead of Max() function
=Only({<[AA_DAD_M_SC.YearInt] = {$(=Max([AA_DAD_M_SC.YearInt]))}>} [AA_DAD_M_SC.YearInt])
&
' Month '
&
MaxString({<[AA_DAD_M_SC.YearInt] = {$(=Max([AA_DAD_M_SC.YearInt]))}>} Month_Name)
&
' Visits'
Try MaxString() instead of Max() function
=Only({<[AA_DAD_M_SC.YearInt] = {$(=Max([AA_DAD_M_SC.YearInt]))}>} [AA_DAD_M_SC.YearInt])
&
' Month '
&
MaxString({<[AA_DAD_M_SC.YearInt] = {$(=Max([AA_DAD_M_SC.YearInt]))}>} Month_Name)
&
' Visits'
Worked like a charm !
Many Thanks!
Its showing as number because its a max expression qlik assumes as a number.
try like below
Month(MakeDate(2000, Max(Month), 1))
Tableau can do it, Spotfire can do it, QlikView can do it. Why cant QlikSense do it ? So Awkward showing to customer he has to export it to csv to copy it -.-