Forum Discussion
LABrowne
Helper II
2 years agoCount rows based on multiple measures
Hello, I am trying to count the number of 'Hot Orders' where the following criteria below: [SpicyLevel (%)] > 1 && [No. of Orders] >= 2 && TODAY() <= [Expiry Date Less 90 Days] How do I ...
ERD
Community Champion
2 years agoHi LABrowne , Calculate might help you.
your_measure =
CALCULATE (
COUNT ( Table[Column] ),
[SpicyLevel (%)] > 1,
[No. of Orders] >= 2,
TODAY () <= [Expiry Date Less 90 Days]
)
- LABrowne2 years ago
Helper II
Hi there,
Unfortunately I get the following error:
"A function 'PLACEHOLDER' has been used in a True/False expression that is used as a table filter expression. This is not allowed."