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)