Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
HI, I need help to create a sequence number as the photo shows, notice that I have the color duplicate, that is correct, every color belong to a different Style, I need a DAX code to built the sequence and used it later in a calculation Thanks
Solved! Go to Solution.
You can do this in the query editor as is, but to do it with a DAX column you need another column that can be used to sort the color column (e.g., a date, a full table index).
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Hi@Rigolleto,
If you want to use DAX to meet your need, you have to create a new column and help you to sort it.
In my demo, I've created a column named “Group”.
Then you can try measure like this:
Index = RANKX(FILTER(ALL('Table'),'Table'[Color]=MAX('Table'[Color])),CALCULATE(MAX('Table'[Group])))
As a workaround:
It can also be achieved in the query editor, you can group on “Color” with operation "All Rows" ,then adjust the generated to have an Index added to the nested tables while grouping.
For details, please refer to the following video : NestedIndex in PowerBI
Here is the demo, please try it.
Hope it helps.
Best Regards,
Caitlyn Yan
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi@Rigolleto,
If you want to use DAX to meet your need, you have to create a new column and help you to sort it.
In my demo, I've created a column named “Group”.
Then you can try measure like this:
Index = RANKX(FILTER(ALL('Table'),'Table'[Color]=MAX('Table'[Color])),CALCULATE(MAX('Table'[Group])))
As a workaround:
It can also be achieved in the query editor, you can group on “Color” with operation "All Rows" ,then adjust the generated to have an Index added to the nested tables while grouping.
For details, please refer to the following video : NestedIndex in PowerBI
Here is the demo, please try it.
Hope it helps.
Best Regards,
Caitlyn Yan
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
You can do this in the query editor as is, but to do it with a DAX column you need another column that can be used to sort the color column (e.g., a date, a full table index).
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 35 | |
| 34 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 136 | |
| 102 | |
| 68 | |
| 66 | |
| 58 |