Forum Discussion
AlejandroPNW
1 year agoMicrosoft Employee
Hide Measure Row in Matrix
Hi There - Hoping someone on here knows how to hide a particular row created by a measure. Or, if I can hide the row and column labels for the matrix visual. Here's the situation: I've creat...
- 1 year ago
Hi AlejandroPNW ,
Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).Do not include sensitive information. Do not include anything that is unrelated to the issue or question.
Please show the expected outcome based on the sample data you provided.
How to Get Your Question Answered Quickly - Microsoft Fabric Community
How to provide sample data in the Power BI Forum - Microsoft Fabric Community
If your issue is addressed,Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.
Tutu_in_YYC
1 year agoSuper User
Here is one option, its doesnt remove the row, but it removes the values.
RemovePreviousYear =
VAR _PrevYear = YEAR(TODAY()) - 1
RETURN
IF(
SELECTEDVALUE([YourYearAxisColumn]) = _PrevYear,
BLANK(),
[YourYOYMeasure]
)
I havent found a way to remove the row entirely.