help with formula

Copper Contributor

 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)))

1 Reply

@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)))