Forum Discussion
kotarosai
Helper II
5 years agoDISTINCTCOUNT 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
Super User
5 years agokotarosai , 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
Helper II
5 years agoThat worked great, thanks so much amitchandak!