Reputation: 85
I have data like below. Each row has either a blank (don't count), a date (completed) or the word Pending (not started). Is there a formula I can use on the bottom rows that will check all the rows above and tell me the % that have been completed? So for the case of Angelica who has completed 11 of 12 in total I would like to see: 92%
Note the first column to count here is E4 and the last E17. I would like to get the percentage in E18.
Upvotes: 0
Views: 219
Reputation: 13821
You can do this:
=(1-(COUNTIF(A3:A17,"Pending")/COUNTA(A3:A17)))*100
Which gets:
Upvotes: 0