Hi - struggling to get this right, any thoughts?
Trying to take the value of a text input box and evaluate it using the switch funciton
Text(
Switch(
Value(SupportNeeded_23.Text),
Value(SupportNeeded_23.Text) >= 0 && Value(SupportNeeded_23.Text) <= 10,
0,
Value(SupportNeeded_23.Text) >= 11 && Value(SupportNeeded_23.Text) <= 20,
5,
Value(SupportNeeded_23.Text) >= 21 && Value(SupportNeeded_23.Text) <= 30,
8,
Value(SupportNeeded_23.Text) > 30,
11
)
)