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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Cayshin
Frequent Visitor

Multi-row Matrix, when collapsed, how to show the LAST entry values?

I have a Maxtrix built from data based on when a Client visits.

Cayshin_2-1623154927645.png

The Rows are organized by "Client Name" then "Visit Date". Columns being what's shown. When expanded, the Rows look like this:

Cayshin_1-1623154833679.png

 

When the rows are collapsed, the value shown under Last Visit Date, Weekday, etc... are the FIRST values found for that Client.

Is it possible to flip that, so instead the LAST values are shown?

So when collapsed, the first Client should show the values of "5/12/2021", "Wednesday", "8:00 AM" ,"3" instead of what's seen in the first picture?

 

I can get the Last Visit Date working by changing the Field to "Latest", but that workaround won't work for the other non-date fields.

Cayshin_3-1623155292451.png

 

Thanks

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

Hi @Cayshin ,

 

Try the following measures:

 

Latest Visit Date = MAX('Table'[Visit Date])
Last Weekday = MAXX( FILTER( 'Table', 'Table'[Visit Date] = MAX('Table'[Visit Date]) ), 'Table'[Weekday] )
Last Visit Time = MAXX( FILTER( 'Table', 'Table'[Visit Date] = MAX('Table'[Visit Date]) ), 'Table'[Visit Time] )
Last Visitors = SUMX( FILTER( 'Table', 'Table'[Visit Date] = MAX('Table'[Visit Date]) ), 'Table'[Visitors] )

image.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

Best Regards,
Winniz

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

1 REPLY 1
v-kkf-msft
Community Support
Community Support

Hi @Cayshin ,

 

Try the following measures:

 

Latest Visit Date = MAX('Table'[Visit Date])
Last Weekday = MAXX( FILTER( 'Table', 'Table'[Visit Date] = MAX('Table'[Visit Date]) ), 'Table'[Weekday] )
Last Visit Time = MAXX( FILTER( 'Table', 'Table'[Visit Date] = MAX('Table'[Visit Date]) ), 'Table'[Visit Time] )
Last Visitors = SUMX( FILTER( 'Table', 'Table'[Visit Date] = MAX('Table'[Visit Date]) ), 'Table'[Visitors] )

image.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

Best Regards,
Winniz

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

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors