Hello brain trust! I'm reaching out for help and guidance on the proper excel formula for a software requirement tracker, where I am evaluating a series of requirements and scoring each software platform to determine which one has the highest score (# of requirements met). Here's what it looks like:
- I have a series of questions/requirements (one per row) on a sheet
- I am then evaluating the response to each question in separate columns (one column per software platform)
- Answers include: Yes, No, Sort of
- Every YES answer = 1 point, Every No answer = 0 points, every Sort Of answer = .5 points
- For each software vendor I want to calculate a score as a percentage value out of 100% (meaning they were yes's for every requirement listed on the spreadsheet).
- So, if every response in the column was yes, they would have a score of 100% (300 points = (1*300/300))
- If there were 285 yes's, 10 no's, and 5 sort of's, they would have a score of 95% (287.5 points = ((1*285)+(0*10)+(5*.5))/300)
I tried something like this, but clearly it's wrong:
=(IF(B4:B300="yes",1) + if(B4:B300="no",0,0) + if(B4:B300="sort of",0.5,0))/count(B4:B300)
I know I'm missing a critical element here to get the point value assigned, but then also do the math to generate the percentage.
Note: Not every row in the spreadsheet will have a value (or should count toward the total answer calculation) as some rows will be section headings
Your help and guidance is very much appreciated! Thanks!
