Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hello,
I am attempting to create a measure that counts the number of distributors who have met their goal. Fields considered: Distributor Name (Columns), Progression to Goal (% Measure)
For each time Progression to Goal is >= 1, add 1 to a counter. Then, return total counter.
At the end of the day, I want a KPI card that shows: x distributors have achieved their goal.
Seems simple, yet here I am haha.
Thanks,
Joel
Hi @Anonymous ,
According to your description, I create a sample.
Here's my solution, create a measure.
Count =
COUNTROWS (
FILTER ( 'Table', 'Table'[progression_to_annual_target_annualized] >= 1 )
)
Get the correct result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
That would work, but
[progression_to_annual_target_annualized]
is a measure. As a result, I am being thrown an error:
Any ideas?
Hi @Anonymous ,
According to the error message, by my research, it's usually a data type error.
As for now, need more data information to dig.
Best Regards,
Community Support Team _ kalyj
Hi @Anonymous
Can you share a sample of your data here in a text format or add more data to your question?
BTW, you can try a measure like this:
Measure =
Var _A = CALCULATETABLE(VALUES('Table'[Distributor]),filter('Table',[Progression to Goal]>1))
return
COUNTROWS(_A)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hey @VahidDM ,
My data looks like this:
I tried the measure you proposed:
conversions_hit_target_counter =
Var _counter = CALCULATETABLE(VALUES('conversion_data'[conversion_opportunity_id]),filter('conversion_data',[progression_to_annual_target_annualized]>=1))
return
COUNTROWS(_counter)but am getting an error:
End game, I want a card to spit out the counter. In this case, 1 would be the return value due to only one conversion meeting thr 100% criteria.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 57 | |
| 53 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 116 | |
| 105 | |
| 41 | |
| 34 | |
| 25 |