Hey community,
I'm creating a way to judge submissions, where each judge has their own smartsheet (so they can see/edit their own markings but not be influenced by others).
I need to be able to know (1) how many times a submission was judged, and (2) what the total score is on one single sheet.
- Currently I've drafted the following for two reviewers, which works, but will be extra clunky once I have the full 11 reviewers: [=IF(ISBLANK(Innovation2), 0, COUNTIF({Reviewer 1 Range 1}, Innovation2)) + COUNTIF({Reviewer 2 Range 1}, Innovation2] Is there a more elegant way to write this?
- What I've drafted doesn't work because it references two separate referenced ranges. What's the best solution? [=SUM(VLOOKUP(Innovation2, {Reviewer 1 Range 2}, 3), VLOOKUP(Innovation2, {Reviewer 2 Range 2}, 3))]
Thanks All!