This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
i have a report with a table, can i order a report for multiple columns in the view?
thanks
Solved! Go to Solution.
Hi @momodj20 ,
We can create a calculated column to order it like following example,
Index =
VAR p = [Power Level]
VAR n = [Name]
VAR a = [Age]
VAR t1 = 'Table3'
VAR t2 =
FILTER ( 'Table3', 'Table3'[Power Level] = p )
VAR t3 =
FILTER ( 'Table3', 'Table3'[Power Level] = p && 'Table3'[Age] = a )
RETURN
RANKX (
t1,
RANKX ( t1, [Power Level],, ASC, SKIP ) * 100
+ RANKX ( t2, [Age],, ASC, SKIP ) * 10
+ RANKX ( t3, [Name],, ASC, SKIP ),
,
DESC,
SKIP
)This will sort by Power Level, then Age, and at last sort by name order.
Then if you want to see the order in Data view, just sort by index column.
If you want to see order in table visual, you can put the column into the table visual.
BTW, pbix as attached.
Best regards,
Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @momodj20 ,
How about the result after you follow the suggestions mentioned in my original post?Could you please provide more details about it If it doesn't meet your requirement?
Best regards,
Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @momodj20 ,
We can create a calculated column to order it like following example,
Index =
VAR p = [Power Level]
VAR n = [Name]
VAR a = [Age]
VAR t1 = 'Table3'
VAR t2 =
FILTER ( 'Table3', 'Table3'[Power Level] = p )
VAR t3 =
FILTER ( 'Table3', 'Table3'[Power Level] = p && 'Table3'[Age] = a )
RETURN
RANKX (
t1,
RANKX ( t1, [Power Level],, ASC, SKIP ) * 100
+ RANKX ( t2, [Age],, ASC, SKIP ) * 10
+ RANKX ( t3, [Name],, ASC, SKIP ),
,
DESC,
SKIP
)This will sort by Power Level, then Age, and at last sort by name order.
Then if you want to see the order in Data view, just sort by index column.
If you want to see order in table visual, you can put the column into the table visual.
BTW, pbix as attached.
Best regards,
Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 25 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 36 | |
| 32 | |
| 25 | |
| 23 |