Google-sheets – Percentage from subtraction

formulasgoogle sheetsgoogle-sheets-arrayformulastatistics

I currently have an issue with a statistics sheet for a sports team. If I have a total amount of practices, with the number of days missed subtracted for each player. How do I turn that into a percentage of their attendance?

Best Answer

=TEXT(D2/B2, "0.00%")

0

which can also be:

=TEXT((B3-C3)/B3, "0.00%")

0

or in one go:

=ARRAYFORMULA(IFERROR(TEXT((B2:B-C2:C)/B2:B, "0.00%")))

0