Forum Discussion
Blujason
Apr 15, 2022Copper Contributor
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...
- Apr 15, 2022
=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.
OliverScheurich
Apr 15, 2022Gold Contributor
=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.
- emmadavison933Apr 04, 2024Copper ContributorI need help with a formula if anyone can help with prioritization scoring
If 1=compliant, 5+ non compliant - it needs to return the score eg 1 or 5
1+no, 5= yes
Appreciate any help, thanks - BlujasonApr 16, 2022Copper ContributorThank you so very much, I was beating my head against the wall trying to figure it out. I forgot I needed multiple if statements. Thank you a million times!