Forum Discussion
Anonymous
3 years agoNot applicable
COUNT Difference between two measures
I have two measures: AUCTION and PURCHASE and I need to count how many times AUCTION is larger than PURCHASE. Both AUCTION and PURCHASE are coming from a measure calculated like this: ...
- 3 years ago
Hi,
Try this measure
=countrows(filter(values(calendar[Dia]),[Auction]>[Purchase]))
Hope this helps.
Ashish_Mathur
3 years agoSuper User
Hi,
Try this measure
=countrows(filter(values(calendar[Dia]),[Auction]>[Purchase]))
Hope this helps.