Forum Discussion
dogt1225
2 years agoHelper III
Matrix Visual with two measures in a column
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 [Cat] i...
Idrissshatila
2 years agoSuper User
Hello dogt1225 ,
try this
Combine =
IF(
ISINSCOPE('Volume'[Engineer Name]),
[Subcat],
IF(
ISINSCOPE('Volume'[Category]),
[Cat]
)
)