Hi All!
I'm working on a Smartsheet and I need a logic formula to update the symbol color. I have 2 columns that I am using in the formula [2 Signer - Status] [1 Signer - Status].
When the status in either of these cells is "Sent" "Delivered" or "Draft", I would like the color of the symbol to be "Yellow".
When the status is "Declined" or "Voided = Red
When the status is "Completed" = Green.
Below is the formula I'm currently using, but it keeps returning #UNPARSEABLE.
I'm not sure which part I'm messing up.
=if([2 Signer - Status]@row [1 Signer - Status]@row = "Sent" "Delivered" "Draft", "Yellow", If([2 Signer - Status]@row [1 Signer - Status]@row = "Declined" "Voided", "Red", If([2 Signer - Status]@row [1 Signer - Status]@row = "Completed", "Green", "")))