Connect with peers, share your expertise, and inspire what’s next in Smartsheet — from proven practices to practical how-to insights from fellow users and product experts.
Sign in to join the conversation:
The posts in this section are historical and no longer monitored for accuracy. If this discussion interests you and you'd like to join in, please visit the active Community to post and engage.
hi
Has andbody an idea to trasform this simple excel formula into smart sheet?
=IF(A1=0;"Red";IF(A1=100;"Green";"Yellow"))
thanks for your help
Try this:
=IF(A1 = 0, "Red", IF(A1 = 100, "Green", "Yellow"))
Just make sure you change A1 for the correct cell reference.
Here is information from our Help Center on formulas in Smartsheet: http://help.smartsheet.com/customer/portal/articles/775363-using-formulas
One more note: If you are referencing a % Complete cell, change 100 to 1. (1 = 100%. 100 = 10000%)