Forum Discussion
Simple Data Sort Problem
- 2 years ago
Walt1010 , With Data I can see you should not face the issue
So if your Data is in MMMM YYYY or MMM YYYY format and sort it on YYYYMM format it should work
Try creating the column again like
Month Year = FORMAT([Date],"mmmm yyyy")
Month Year sort = FORMAT([Date],"yyyymm")or
Month Year sort = year([Date]) *100 + month([Date])
How to Create Sort Column and Solve Related Errors:
https://www.youtube.com/watch?v=KK1zu4MBb-c
Walt1010 , With Data I can see you should not face the issue
So if your Data is in MMMM YYYY or MMM YYYY format and sort it on YYYYMM format it should work
Try creating the column again like
Month Year = FORMAT([Date],"mmmm yyyy")
Month Year sort = FORMAT([Date],"yyyymm")
or
Month Year sort = year([Date]) *100 + month([Date])
How to Create Sort Column and Solve Related Errors:
https://www.youtube.com/watch?v=KK1zu4MBb-c