Complete the formula to return "Yes" if A1 equals 1, otherwise "No".
=SWITCH(A1, 1, [1], "No")
The SWITCH function compares A1 to 1. If it matches, it returns the second argument, which should be "Yes".
Complete the formula to return "Red" if B2 is 1, "Blue" if 2, and "Green" if 3.
=SWITCH(B2, 1, "Red", 2, "Blue", 3, [1], "Unknown")
The formula checks B2 for 1, 2, or 3. For 3, it should return "Green".
Fix the error in the formula to return "Small", "Medium", or "Large" based on C3 values 1, 2, or 3.
=SWITCH(C3, 1, "Small", 2, "Medium", 3, [1])
The formula is missing the return value for 3. It should be "Large".
Fill both blanks to return "Winter", "Spring", "Summer", or "Fall" based on month number in D4.
=SWITCH(D4, 12, "Winter", [1], "Spring", [2], "Summer", "Fall")
The formula returns seasons by month number. 3 is Spring, 9 is Summer.
Fill all three blanks to return "Low", "Medium", or "High" based on score in E5.
=SWITCH(E5, [1], "Low", [2], "Medium", [3], "High", "Unknown")
The formula matches scores 1, 2, and 3 to "Low", "Medium", and "High" respectively.