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
yaman123
Post Partisan
Post Partisan

Max Column not showing correctly

Hi all, 

 

I have a matrix table in a report and I have a MAX date column in the Rows section. But each time the report refreshes, it expands the column and shows the dates for the month instead of the max date.  So below should show as Min Date 01/09/2021 and Max Date should show as 30/09/2021. 

 

Is there a way to correct this? 

 

yaman123_0-1633440746725.png

TIA

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

Hi @yaman123 

 

If you use max date as a row or column of a matrix table, it will not be calculated. If you want to do the calculation, then you should create a new measure and put it in the value.

Create a measure like this.

Max Date_Measure =
MAXX(
    FILTER( 'Table', [Min Date] = SELECTEDVALUE( 'Table'[Min Date] ) ),
    [Max Date]
)

 

vchenwuzmsft_0-1633655681881.png

 

If I misunderstood you , please let me know.

Best Regards

Community Support Team _ chenwu zhu

 

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

2 REPLIES 2
v-chenwuz-msft
Community Support
Community Support

Hi @yaman123 

 

If you use max date as a row or column of a matrix table, it will not be calculated. If you want to do the calculation, then you should create a new measure and put it in the value.

Create a measure like this.

Max Date_Measure =
MAXX(
    FILTER( 'Table', [Min Date] = SELECTEDVALUE( 'Table'[Min Date] ) ),
    [Max Date]
)

 

vchenwuzmsft_0-1633655681881.png

 

If I misunderstood you , please let me know.

Best Regards

Community Support Team _ chenwu zhu

 

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

jppv20
Solution Sage
Solution Sage

Hi @yaman123 ,

 

Could you provide some example data from your table?

 

 

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