I have spent hours researching Smartsheet Community posts, but cannot find a solution. I have a sheet that I need to enter a value based on information in other columns on the sheet. I have tried IF,OR,AND combinations. Below is the criteria:
-If less than 50,001, then Enter "Deputy Director"
-If greater than 50,000, then Enter "Director"
-If greater than 50,000 AND a column contains "UFD", then Enter "Director"
Here is the formula that works perfectly for the first two criteria listed above. The third criteria is not working.
=IF([Dollar Amount for this Option Only]@row < 50001, "DeputyDirector", IF([Dollar Amount for this Option Only]@row > 50000, "Director", IF([Required Action]@row, "UFD", "DeputyDirector")))