Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have a matrix where i accumulate projects inside of departments (rows), and my values are dates and text information, wich does not make sense to show if i have my projects hidden inside of the departments.
My question is, is it possible not show the information on the values field when everything is collapsed?
Solved! Go to Solution.
Hi @AndreDeLuca ,
You can achieve this by creating mesures with ISINSCOPE.
Lets say you only want to show Responsável when the Area is expanded. Let's assume the level under Area is called SubArea.
You can then write something like this:
Responsável Measure =
IF(ISINSCOPE(Table[SubArea]),MIN(Table[Responsável]),"")
Then instead of using the Responsável column in your matrix, use the measure.
Let me know if you run into any issues. You can find more info on how ISINSCOPE works here and here.
Proud to be a Super User! | |
Hi @AndreDeLuca ,
You can achieve this by creating mesures with ISINSCOPE.
Lets say you only want to show Responsável when the Area is expanded. Let's assume the level under Area is called SubArea.
You can then write something like this:
Responsável Measure =
IF(ISINSCOPE(Table[SubArea]),MIN(Table[Responsável]),"")
Then instead of using the Responsável column in your matrix, use the measure.
Let me know if you run into any issues. You can find more info on how ISINSCOPE works here and here.
Proud to be a Super User! | |
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
69 | |
64 | |
50 | |
36 | |
26 |
User | Count |
---|---|
86 | |
55 | |
44 | |
43 | |
36 |