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.
=SUMIFS({GM Compliance Trained}, {GM Compliance Training Dept}, Department@row , {Compliance Training Date}, MONTH(7, 8, 9)) GM Compliance Trained is the number of employees trained. I am trying to sum the number of employees trained in each department during 3rd quarter (July 1-Sep 30). Thinking I need an IFERROR in there…
Hi. I am working on a (roughly) annual document review system, in partnership with another team in my organization. They have requested that they receive one document to review per week. But there are more documents to review than there are weeks in the year. So I need to figure out a method for ensuring that I don't send…
I would like to use automation on a sheet to record the Open and Closed date for a given RAID item. I don't want to record the time, however. Is there a way to exclude a time stamp from the automation? If it is not possible to exclude the time stamp, what formula would I need to use to extract the datae and time into…