Forum Discussion

Blujason's avatar
Blujason
Copper Contributor
Apr 15, 2022
Solved

Need help with scoring a questionaire and if statements please.

Good day Gurus,   I am trying to create an "IF" formula for scoring a questionaire, and not figuring it out.   I have a 10 question survey, 4 answers possible, yet the scoring gets confusing: It...
  • OliverScheurich's avatar
    Apr 15, 2022

    Blujason 

    =INDEX(B2:E2,,MATCH(F2,COLUMN(B:E)-1,0))

    If you want to add the points for the actual answers you can try above formula. Enter the formula with ctrl+shift+enter if you don't work with Office365 or 2021. There should be a single formula to calculate the points total but i can't figure it out at the moment.

     

    =IF(OR(A2={1,3,4,7,10}),IF(F2=1,4,IF(F2=2,3,IF(F2=3,2,1))),IF(OR(A2={2,5,6,8,9}),IF(F2=1,1,IF(F2=2,2,IF(F2=3,3,4)))))

    The IF formula works as well in my spreadsheet.

Resources