Forum Discussion
Anonymous
7 years agoNot applicable
Percent Column
I am trying to find percent approved, and having trouble. This is in a table by month and year Year Month #Received # Approved %Approved 2019 Feb 50 ...
- 7 years ago
Anonymous yes it will, then you have to add a measure
% Approved = DIVIDE( SUM( Table[Approved] ), SUM( Table[Received] ) )
parry2k
7 years agoSuper User
Anonymous is it approved divided by received, add following column and change it to %
% Approved = DIVIDE( Table[Approve], Table[Received])