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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! 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
v-yiruan-msft
Community Support
Community Support

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

Community Support Team _ Rena
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-yiruan-msft
Community Support
Community Support

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

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

Thanks so much @v-yiruan-msft  !! 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
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors
Top Kudoed Authors