Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 84 | |
| 49 | |
| 37 | |
| 31 | |
| 30 |