I have a switch function. In that switch function I want to have an operator on a case. So for example:
Switch(
ThisRecord.CW,
1, Solved,
>=7, Solved*2 //it does not work with >=
)
Solved! Go to Solution.
The switch function will only work with a specific value. You cannot use operators with it.
Please consider changing your Formula to the following:
If(ThisRecord.CW = 1, Solved,
ThisRecord.CW >=7, Solved*2
)
I hope this is helpful for you.
The switch function will only work with a specific value. You cannot use operators with it.
Please consider changing your Formula to the following:
If(ThisRecord.CW = 1, Solved,
ThisRecord.CW >=7, Solved*2
)
I hope this is helpful for you.
User | Count |
---|---|
261 | |
128 | |
99 | |
48 | |
47 |