Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
In this chart, dimension=Month (fieldname=Monthname) and measure=Quantity.
Under sorting what would be the expression (formula)? Tried several formulas, cant seem to manage..
Thanks
hi,
create a another field in your data model that have number of corresponding month and then in the expression use =MonthNo
uncheck other sorting option..
you can also try this expression:
=num(date(MonthName,'MMMM'))
if you have MonthStart field then you can use MonthStart field in Sort by Expression
Shraddha, thanks for helping
does not work...difficult to figure out why
try:
in Sort by expression
num(month(Datefield))
seems to work!
Also workaround:
Pick(wildmatch(Monthname,'January','February','March','April','May','June','July','August','September','October','November','December'),
1,2,3,4,5,6,7,8,9,10,11,12)
that works excellent everywhere. many thanks
Hi try this in script
if(Month(DateField)=9,6,if(Month(DateField)=10,7,if(Month(DateField)=11,8,if(Month(DateField)=12,9))))))))))))as SalesMonthOrder,
And go to chart propertires sort --> expression--> use SalesMonthOrder field in that.
sure it will work