Forum Discussion

Tanaaaa's avatar
Tanaaaa
Copper Contributor
Mar 06, 2025
Solved

Adding values generated by IF Function

Hi all trying to set up a QA spreadsheet with Yes/No answers.  I used the =IF(B9="Yes"; "1";"0") To generate values in Column C I want to add up those values in column C to get a total so I used =...
  • ScottAng's avatar
    Mar 06, 2025

    Putting numbers in quotation mark " " makes them text. Try this before summing: =IF(B9="Yes",1,0).

    Another way to count the Yes(es) without needing column C is: =COUNTIF(B9:B41,"Yes").

Resources