Forum Discussion
Need Help with a Measure Formula
- 7 years ago
Hi Zaky
Create a measure
Measure = CALCULATE(COUNTA(Table1[Model/Description]),FILTER(ALL(Table1),Table1[Quantity]=1))
Best Regards
MaggieCommunity Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. - 7 years ago
Hi,
can you please try below measure and mark correct if it works.
Count = CALCULATE(COUNT(Sheet2[code]),Sheet2[quantity] = 1)Thanks,Surya teja
Zaky ,
Use this formula
CountQuantity = CALCULATE(COUNTA(Table1[Model/Description]),FILTER(Table1,Table1[Quantity]="1"))
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Zaky7 years agoHelper IV
Hi,
I'm trying created the measure, but it's not working.
- v-juanli-msft7 years agoCommunity Support
Hi Zaky
Create a measure
Measure = CALCULATE(COUNTA(Table1[Model/Description]),FILTER(ALL(Table1),Table1[Quantity]=1))
Best Regards
MaggieCommunity Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.- suryaburaboyina7 years agoFrequent Visitor
Hi,
can you please try below measure and mark correct if it works.
Count = CALCULATE(COUNT(Sheet2[code]),Sheet2[quantity] = 1)Thanks,Surya teja
- Anonymous7 years agoNot applicable
However, to eliminate the Zero counts you will need to use the Visualizations Visual Level Filter to eliminate Zero.