Forum Discussion
lnayak
4 years agoFrequent Visitor
Create a Measure to Count based on a condition
Hi, So i have a PowerPivot and i need to create a Measure to count the values based on a specfic value that is in the column and also to count only items that fall under certian category. So basi...
- 4 years ago
Use below formula
=calculate(count(EDE[Worker]),EDE[Max over Bill Rate?]="Bill Rate Over Max",EDE[Invoice Option]="Staffing")
Vijay_A_Verma
4 years agoMost Valuable Professional
Use below formula
=calculate(count(EDE[Worker]),EDE[Max over Bill Rate?]="Bill Rate Over Max",EDE[Invoice Option]="Staffing")
lnayak
4 years agoFrequent Visitor
Thank you Vijay_A_Verma , this worked!