I would like the column "Done" to be checked automatically if the % Complete is changed to 100%. I am using the formula below which is not working:
=IF([% Complete]3 = "100%", 1)
Any suggestions?
If your % Complete column is formatted to be a percentage, you will need to replace "100%" with 1 (no quotes).
=IF([% Complete]@row= 1, 1)
thank you so much!!! it worked
Happy to help!
Smartsheet stores percentages as a fraction of 1, so
100% = 1
75% = 0.75
50% = 0.5
25% = 0.25
0% = 0
and everything in between.
All the above rules are working except the 4th one in the list which asks for the cell to turn red if Group status is not started and end date is in next 14 days. I have used the Smartsheet AI tool but no luck, I have saved and refreshed. I am using a helper column for my 5th rule in the list which asks the cell to turn…
Is there a way to limit a dropdown list so that the values in the dropdown list can only be used once in a column?
I have tried this a variety of ways. I have Hotel and then 3 standard Vendor Types. I am checking to see if certain information has been entered for each of these on Sheet B. I have the formula pulling the information for these correctly. The issue is with any non-standard vendor types. Since not all meetings will have an…