Forum Discussion
Corleen
9 years agoRegular Visitor
Count a Measure or Countif
Good day Please assist I've created a measure to count how many times a person id comes forth in the data. # times = CALCULATE(COUNT('TransactionDetails'[SYSTEM_NUM]),'TransactionDetails'...
v-caliao-msft
9 years agoMicrosoft Employee
Please try the DAX below.
# times =
CALCULATE(
COUNTROWS('TransDetail'),
FILTER(ALLEXCEPT('TransDetail',
'TransDetail'[SYSTEM_NUM]),
'TransDetail'[EARN_DEDUCT_IND]=1)
)
Regards,
Charlie Liao
Anonymous
8 years agoNot applicable
Hello,
I am facing the same problem with getting count of measure. Can you please provide a relevent solution.
Thanks,
rax