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!Get Fabric certified for FREE! Don't miss your chance! Learn more
I have 2 measusres meant to count how many advisors have 0 sales and how many have between 1-4 sales. The below formula is meant to capture the second number, but as written it also captures those with 0 sales. How do I modify it to capture only those with 1-4 sales?
1-4 RTA = CALCULATE(DISTINCTCOUNT(Advisors[Advisor Name]),FILTER(Advisors,Advisors[RTAs]<5))
Thanks!
Solved! Go to Solution.
Hey,
guess this would work
1-4 RTA =
CALCULATE(
DISTINCTCOUNT(Advisors[Advisor Name])
,FILTER(Advisors
,Advisors[RTAs] >= 1
&& Advisors[RTAs] <=5
)
)Regards
Hey,
guess this would work
1-4 RTA =
CALCULATE(
DISTINCTCOUNT(Advisors[Advisor Name])
,FILTER(Advisors
,Advisors[RTAs] >= 1
&& Advisors[RTAs] <=5
)
)Regards
Thanks! I never would have guessed the double ampersand (&&)!
Sometimes it's the small things ![]()
Well, I'm new at this, so it's often the small things! But I surely do do appreciate the help!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 68 | |
| 59 | |
| 48 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 107 | |
| 106 | |
| 39 | |
| 27 | |
| 27 |