Forum Discussion
hatahetahmad
8 years agoHelper I
Calculated Invoices Count with filtered Measure
Hello, I have Sales Table contains (Date, ID, Sales Rep, Product, Total) I Counted the Invoices above 20$ (Used calculate and calculated distinct invoices count) But My Question when Invo...
- 8 years ago
Hi hatahetahmad,
Try this new measure.
Measure = SUMX ( VALUES ( data[Date] ), IF ( [Invoices Above 20$] >= 14, [Invoices Above 20$], 0 ) )Best Regards,
Dale
v-jiascu-msft
8 years agoMicrosoft Employee
Hi hatahetahmad,
Try a measure like below. Or you can share a sample.
Measure = SUMX ( VALUES ( 'table'[sales] ), COUNT ( 'table'[invoice] ) )
Best Regards,
Dale
hatahetahmad
8 years agoHelper I
- v-jiascu-msft8 years agoMicrosoft Employee
Hi hatahetahmad,
Try this new measure.
Measure = SUMX ( VALUES ( data[Date] ), IF ( [Invoices Above 20$] >= 14, [Invoices Above 20$], 0 ) )Best Regards,
Dale
- hatahetahmad8 years agoHelper I
Finally, Thank you.