Forum Discussion
Chinh_Dac
3 years agoFrequent Visitor
Create Index Column Based on Month Year Column
Hi everyone I am new to DAX and I need some help. Please help me solve my problem. I have my calendar table, which includes a Month Year column. I want to create an Index column base on the Month Y...
- Anonymous3 years ago
Hi Chinh_Dac ,
Please check the formula:
Column = RANKX('calendar',YEAR('calendar'[Date])*100+MONTH('calendar'[Date]),,ASC,Dense)