March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |