Forum Discussion
kotarosai
5 years agoHelper II
DISTINCTCOUNT with multiple filter criteria
Hello, I am having an issue with a measure / formula. One works as intended when using an OR logic but does not work as intended with an AND. Both formulas are below and the measure is shown in the m...
- 5 years ago
kotarosai , Try like and check
Retained Accounts Past QTR = Countrows(
filter(values('Sales Result'[Account]),'Sales Result',[Accounts Ordered Past QTR] > 0 && [Accounts Ordered 2 QTRs Ago] > 0))
amitchandak
5 years agoSuper User
kotarosai , Try like and check
Retained Accounts Past QTR = Countrows(
filter(values('Sales Result'[Account]),'Sales Result',[Accounts Ordered Past QTR] > 0 && [Accounts Ordered 2 QTRs Ago] > 0))
kotarosai
5 years agoHelper II
That worked great, thanks so much amitchandak!