Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
I am using below formula in the table:
Solved! Go to Solution.
Hi @Anonymous
Please use the measure instead:
Measure = IF(MAX([columnvalue])<5,DISTINCTCOUNT('FACT'[EMP_ID]),0)
Hi @Anonymous
If my above post helps, could you please consider Accept it as the solution to help the other members find it more quickly. thanks!
Hi @Anonymous
Please use the measure instead:
Measure = IF(MAX([columnvalue])<5,DISTINCTCOUNT('FACT'[EMP_ID]),0)
We are getting an error while using MAX function.
The MAX function only accepts a column reference as the argument number 1. I am using measure and need to see the total for measures.
@Anonymous Please try below measure
measure = CALCULATE(DISTINCTCOUNT('Table'[Country]),'Table'[columnvalue]<5)
Just in case you wan to display zero for other values
Measure =
VAR _count = CALCULATE(DISTINCTCOUNT('Table'[Country]),'Table'[columnvalue]<5)
RETURN IF(ISBLANK(_count),0,_count)
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
42 | |
31 | |
27 | |
27 |