Forum Discussion
carla2420
May 31, 2022Copper Contributor
help with formula
can someone explain me how to write the following formula correct so it doesnt give me error
=SI(D20>="VIP 00:00";"VIP",+si(D20="off";"off",+si(D20="RC/FD";"RC/FD",0)))
- Riny_van_EekelenPlatinum Contributor
carla2420 Not certain if your formula is full proof, but it seems you mixed semi-colons and a comma as the separator between the arguments of the formula.
This one should not give an error but if whether or not it gives you the correct result is up to you to determine.
=SI(D20>="VIP 00:00";"VIP",SI(D20="off";"off";SI(D20="RC/FD";"RC/FD",0)))