Forum Discussion
klopdaddy
4 years agoRegular Visitor
Virtual Table Row Count with Boolean Expression
Hello- I am tryint to count the # of events by comparing two calculated measures and returning the count of only those rows that meet the condition. I've been trying via the DAX statement and creati...
- 4 years ago
That worked with the help of an if statement in my virtual column to create the boolean output to sum.
Thanks!
tamerj1
4 years agoCommunity Champion
Just replace CONTX with SUMX to cout the trure condition. Boolean condition can be summed. The sum would be the count of true cases as true is translated to 1.
klopdaddy
4 years agoRegular Visitor
That worked with the help of an if statement in my virtual column to create the boolean output to sum.
Thanks!