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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi there,
I have created the below measures:
ID = DISTINCTCOUNT(ID)
Solved! Go to Solution.
For example
Percentage =
Filtered = CALCULATE(DISTINCTCOUNT('Table'[ID]), 'Table'[Column] = "Yes")
Perc = Divide(Filtered,DISTINCTCOUNT('Table'[ID]))
RETURN IF(Perc>0.05,Perc)
RETURN IF(Percentage>0.05,Percentage)
Thank you - where would this go please? Also it isn't the percentage that is 0.05 it is the fitered results count - Filtered Result = CALCULATE('Table'[ID], FILTER('Table','Table'[Column] = "Yes"))
For example
Percentage =
Filtered = CALCULATE(DISTINCTCOUNT('Table'[ID]), 'Table'[Column] = "Yes")
Perc = Divide(Filtered,DISTINCTCOUNT('Table'[ID]))
RETURN IF(Perc>0.05,Perc)
User | Count |
---|---|
9 | |
8 | |
5 | |
4 | |
3 |