Counting Checkboxes to deteremine Probability
I have multiple check boxes in a row and want to determine Probability based upon how many of the are checked. If 3 checked its High, if 2 Medium one is low. am doing this across sheets, other words metrics sheet that looking at with boxes..
0
Best Answer
-
RossL ✭✭✭✭✭
@Kimberly Reynolds are all the check boxes lined up in the row? like the example below?
=IF((COUNTIF([Column2]@row:[Column4]@row, 1)) = 1, "Low", IF((COUNTIF([Column2]@row:[Column4]@row, 1)) = 3, "High", "Medium"))
5
Answers
@Kimberly Reynolds are all the check boxes lined up in the row? like the example below?
=IF((COUNTIF([Column2]@row:[Column4]@row, 1)) = 1, "Low", IF((COUNTIF([Column2]@row:[Column4]@row, 1)) = 3, "High", "Medium"))
Yes, exactly! Thank you!