
Announcements
Good day,
I am trying to calculate the data for a column of data in PowerBI:
Below shows the sum of the items filtered (or sliced) for a date range. I would like to take the chks per row divide it by the sum and show in the %ofHch column.
eg: (237/88k)*100 =0.27%
try this measure
%ofHch = SUM(yourTable[chks]) / (CALCULATE(SUM(yourTable([chks]), ALL()))