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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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)))