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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
abukapsoun
Post Patron
Post Patron

Sorting based on last column

Hi Guys,

 

Need your support please.

I have the following matrix, How can I sort the table from largest to smallest based on last day values?

 

abukapsoun_0-1668511385932.png

 

Thank you

 

1 ACCEPTED SOLUTION
v-yadongf-msft
Community Support
Community Support

Hi @abukapsoun 

 

This is my test table:

vyadongfmsft_0-1669181237373.png

 

Please create a measure:

 

Measure = 
var _maxdate=MAXX(ALLSELECTED('Table'),[Date])
var _sum= CALCULATE(SUM('Table'[Value]),FILTER('Table',[Date]=_maxdate))
return
IF(HASONEVALUE('Table'[Date]),SUM('Table'[Value]),_sum)

 

 

Create a matrix visual. The column subtotals will become the last day value as below shown, then you can sort from largest to smallest based on last day values:

vyadongfmsft_1-1669181466020.png

 

If you don't want to show column subtotals, you can switch off column subtotals after sorting.

vyadongfmsft_2-1669181685665.png

 

Best regards,

Yadong Fang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yadongf-msft
Community Support
Community Support

Hi @abukapsoun 

 

This is my test table:

vyadongfmsft_0-1669181237373.png

 

Please create a measure:

 

Measure = 
var _maxdate=MAXX(ALLSELECTED('Table'),[Date])
var _sum= CALCULATE(SUM('Table'[Value]),FILTER('Table',[Date]=_maxdate))
return
IF(HASONEVALUE('Table'[Date]),SUM('Table'[Value]),_sum)

 

 

Create a matrix visual. The column subtotals will become the last day value as below shown, then you can sort from largest to smallest based on last day values:

vyadongfmsft_1-1669181466020.png

 

If you don't want to show column subtotals, you can switch off column subtotals after sorting.

vyadongfmsft_2-1669181685665.png

 

Best regards,

Yadong Fang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hello, for this measure, if last column has no value then it takes value from previous column. How to adjust measure so if there is no value , there is no value?

mangaus1111
Solution Sage
Solution Sage

Hi @abukapsoun ,

I think that it is not possible to sort a column in a matrix, but it is possible to sort a measure in a matrix. You have to find the way to create a measure only for the last day.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors