I am creating a sheet where you have to with a dropdown menu for each calender week (CW) in which you can choose between "fulfilled", "partly fulfilled" and "not fulfilled".
I want to connect these field with another column where I use the ball symbols (fulfilled = green, partly fulfilled = yellow, not fulfilled = red)
I used the IF formula:
=IF([CW 30]@row = "not fulfilled"; "Red") and it works fine
but when I want to add the other colors I get an UNPARSEABLE error
Here's the formula I used:
=IF([CW 30]@row = "not fulfilled"; "Red", if([CW 30]@row = "partly fulfilled"; "Yellow", if([CW 30]@row = "fulfilled"; "Green")))
The original formula I used is in German but it worked the same
Can you help me?