Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am not able to sort this chart-
I have tried every possible option but not able to do
Hi Sesa Stone,
How do you want to sort?
Regards,
MB
try the following sort expression:
=Date#(YourDimensionName, 'D-MMM-YYYY')
This is probably because the X- axis field is a string field and not a date field. With that date format, you cannot easily sort the strings.
Convert the field to a date field during the load:
LOAD...
myDatefield as strDateField,
Date(Date#(myDatefield, 'd-MMM-yyyy')) As DateField,
...
Then use DateField as the dimension and sort numerically. Change the field names to suit your document.