Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear all
Find attachment of bar chart picture i want sorting on month's from april to march (Month no)
I am using qv11 version and months are put in cyclic drill.
How do I sort it.
Thanks
Regards
Vikas
So you want to sort the months from Apr - Mar, 1-12.
Load a table using Month and MonthSort values:
Load * Inline [
Month, MonthSort
Apr, 1
May, 2
etc...
Mar, 12 ];
Then in your chart, set the dimension to be sorted by expression, using MonthSort
Hi Vikas,
You can use the following expression on prop-> sort->Expression
=wildmatch(Month,'Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec','Jan','Feb','Mar')
Hope it works for you.
Regards,
Tom
Dear Tom
Thanks
Thanks