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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi everyone,
I need to create a mesure which calculate a percentage in my column. I have 6 differents values in a column of 300 000 rows.
I need to calculate in percentage the number of rows contain "On time" divided by the number total of rows.
Thanks in advance for any help.
Solved! Go to Solution.
@PBIBeginner2022 , Try a measure like
divide(Countrows(Filter(Table, Table[column] = "On Time")), Countrows(Table))
or
divide(Countrows(Filter(Table, Table[column] = "On Time")), Countrows(allselected(Table)))
@PBIBeginner2022 , Try a measure like
divide(Countrows(Filter(Table, Table[column] = "On Time")), Countrows(Table))
or
divide(Countrows(Filter(Table, Table[column] = "On Time")), Countrows(allselected(Table)))
Check out the November 2025 Fabric update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!