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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
jcastr02
Post Prodigy
Post Prodigy

matrix value - show only last week but only for one of the values

Hello Im using a matrix visual and have two columns I'm pulling into values.  (Reduced Hours and HTS Category ) these are displayed by week. 

 

However, I only want the the HTS Category value to show for the last reporting week, I don't need to see it for previous weeks.  I would like to see the Reduced Hours for every week.  does anyone have any suggestions?  Essentially Id like to just shows the areas in yellow and not ones in RedScreenshot 202.png

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @jcastr02 ,

You can create a measure as below and replace the field [HTS Category] with this new measure on the matrix visual.

Measure =
VAR _maxweek =
    CALCULATE ( MAX ( '***ReducedHours'[Week] ), ALLSELECTED ( '***ReducedHours' ) )
RETURN
    IF (
        SELECTEDVALUE ( '***ReducedHours'[Week] ) = _maxweek,
        MAX ( '***ReducedHours'[HTS Category] ),
        BLANK ()
    )

vyiruanmsft_0-1701246009724.png

If the above one can't help you, please provide some raw data in your table (exclude sensitive data) with Text format and your expected result with backend logic and special examples? It would be helpful to find out the solution. You can refer the following links to share the required info:

How to provide sample data in the Power BI Forum

How to Get Your Question Answered Quickly

And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @jcastr02 ,

You can create a measure as below and replace the field [HTS Category] with this new measure on the matrix visual.

Measure =
VAR _maxweek =
    CALCULATE ( MAX ( '***ReducedHours'[Week] ), ALLSELECTED ( '***ReducedHours' ) )
RETURN
    IF (
        SELECTEDVALUE ( '***ReducedHours'[Week] ) = _maxweek,
        MAX ( '***ReducedHours'[HTS Category] ),
        BLANK ()
    )

vyiruanmsft_0-1701246009724.png

If the above one can't help you, please provide some raw data in your table (exclude sensitive data) with Text format and your expected result with backend logic and special examples? It would be helpful to find out the solution. You can refer the following links to share the required info:

How to provide sample data in the Power BI Forum

How to Get Your Question Answered Quickly

And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

Thanks so much @Anonymous  !! I got this to work.  Is there a way to get the previous weeks columns to not show at all (show only the reduced hours column for previous weeks, but not the others)
Screenshot 2023-11-29 091426.png

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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 Kudoed Authors