Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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 Red
Solved! Go to Solution.
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 ()
)
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
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 ()
)
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 @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)