Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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! | |
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
85 | |
70 | |
68 | |
50 | |
32 |
User | Count |
---|---|
115 | |
100 | |
73 | |
65 | |
40 |