Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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 MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
78 | |
52 | |
39 | |
35 |
User | Count |
---|---|
94 | |
79 | |
51 | |
47 | |
47 |