Forum Discussion
Ormy28
1 year agoRegular Visitor
Matrix Visual - Attributes on Different Rows
Hi I have a table of transactions that includes a Start Date along with two attributes, Transaction Type and Fulfilled. Transaction Type is simply a three letter code and Fulfilled is just a ...
Cookistador
Super User
1 year agoHi Ormy28
The following dax measure should help you
Total =
VAR CountValue = CALCULATE(COUNT('Table'[Transaction Type]))+0
RETURN
IF(
ISINSCOPE('Table'[Transaction Type]),
CountValue,
CALCULATE(COUNT('Table'[Fulfilled]),'Table'[Fulfilled] = 1)
)
Ormy28
1 year agoRegular Visitor
Thanks for your reply.
How would you then use this measure? I was of the understanding that measures could not be used as rows in a matrix visual?