Forum Discussion
LABrowne
2 years agoHelper II
Count 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
2 years agoCommunity Champion
Hi LABrowne , Calculate might help you.
your_measure =
CALCULATE (
COUNT ( Table[Column] ),
[SpicyLevel (%)] > 1,
[No. of Orders] >= 2,
TODAY () <= [Expiry Date Less 90 Days]
)
LABrowne
2 years agoHelper 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."