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.
Im trying to get a formula to work in smartsheet. Can anyone help me out?
=IF([Travel Type]1, "craftworker"), ".3", ".4")
I want it to apply $0.30 to the cell if the travel type selected is craftworker.
I think you need to replace the comma after the cell reference with an = and remove the closed parathesis after "craftworker".
This should work:
=IF([Travel Type]1 = "craftworker", .3, .4)