Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I have a matrix visual where the parent Category is Products and Sub Category is Engineer Name. (Infomation has been cutoff in screenshot for security purposes. )
I have two measures
I am looking to create a combines column (last column within the screenshot), that only shows the [Cat] values when the hierarcy in the matrix is minimized and show both [Cat] and [SubCat] when the matrix is expanded to next level.
With my current calculation the SubCat values are not appearing and showing all zeroes.
Combine =
IF(ISFILTERED('Volume'[Engineer Name]), [Cat], [SubCat])
Solved! Go to Solution.
Hi @dogt1225,
Please try this formula:
Combine =
IF(
ISINSCOPE('Volume'[Engineer Name]),
[SubCat],
[Cat]
)
I hope this help you.
Proud to be a Super User!
Hi @dogt1225,
Please try this formula:
Combine =
IF(
ISINSCOPE('Volume'[Engineer Name]),
[SubCat],
[Cat]
)
I hope this help you.
Proud to be a Super User!
Hello @dogt1225 ,
try this
Combine =
IF(
ISINSCOPE('Volume'[Engineer Name]),
[Subcat],
IF(
ISINSCOPE('Volume'[Category]),
[Cat]
)
)
Proud to be a Super User! | |
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
104 | |
98 | |
97 | |
38 | |
37 |
User | Count |
---|---|
152 | |
121 | |
73 | |
71 | |
63 |