Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mm_engstrom
New Member

Top N Within Matrix Table

Hi,

I have 3 columns of Data (Top 20 customers for 3 years). I would like to sort the table so it starts with the largest customer in the most recent year. Right now it seems like the 20 custoemrs are just presented randomly.

Thanks in advance

Michael

1 ACCEPTED SOLUTION

@mm_engstrom,

 

Currently, we can not sort your table by using two different column. To work around this issue, you could create another column.

Sample data
Capture.PNG
And then create a table bu using the DAX below.

Table =
ADDCOLUMNS (
    TOPN ( 20, Table1, Table1[Amount], DESC ),
    "rank", RANKX ( Table1, Table1[Year] * 10000 + Table1[Amount] / 10000,, DESC )
)

Capture1.PNG

Regards,

Charlie Liao

View solution in original post

3 REPLIES 3
miltenburger
Helper V
Helper V

Just click on the column header and it will sort automatically

 

Kind regards

Yes. That will work for the total column for the 3 years, but the total coulm is hidden. I would like to sort on the most recent year - not the total. Nothing happens when clicking on one of the coumns.

@mm_engstrom,

 

Currently, we can not sort your table by using two different column. To work around this issue, you could create another column.

Sample data
Capture.PNG
And then create a table bu using the DAX below.

Table =
ADDCOLUMNS (
    TOPN ( 20, Table1, Table1[Amount], DESC ),
    "rank", RANKX ( Table1, Table1[Year] * 10000 + Table1[Amount] / 10000,, DESC )
)

Capture1.PNG

Regards,

Charlie Liao

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.