Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi! Is it possible to remove a measure added in Values section of a matrix, but only from under one Column? Please see the screenshot below. Basicaly, I'd like _RAGBudget to be shown only under Start Date - Last Closed Month column, and remove it from Last Closed Month.
Solved! Go to Solution.
Hi @niculeica ,
You can create a new measure so that it displays values under special columns and blanks in other cases.
You can refer to the following example:
Measure 2 =
IF(MAX('financials'[Product]) = "VTT", [Measure], BLANK())
Then you can turn down its column width. Mouse over the right side of the column and drag the double-arrow criterion when it appears until it disappears. However, at this point the row spacing will be larger as a result, so a shorter name for it is recommended.
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @niculeica ,
You can create a new measure so that it displays values under special columns and blanks in other cases.
You can refer to the following example:
Measure 2 =
IF(MAX('financials'[Product]) = "VTT", [Measure], BLANK())
Then you can turn down its column width. Mouse over the right side of the column and drag the double-arrow criterion when it appears until it disappears. However, at this point the row spacing will be larger as a result, so a shorter name for it is recommended.
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!