Hello
As per the screenshot below, im trying to have a formula that if Status A is selected from the column this will check the box within approved for construction.
is this possible.
Regards Daniel
Try something like this...
=IF([Issue 1 - Status Received]@row = "Status A", 1)
Hello Paul
That works perfectly, what if i need to add status B to the option and additional columns such as Issue 2 - Status Received, can this work also.
Really appreciate your help.
It can. The first step would be to list out all criteria that could potentially check the box. From there we can build out a formula that can cover everything.
In summary the sequence as below:
=IF "Issue 1 - Status Received or Issue 2 - Status Received or Issue 3 - Status Received or Issue 4 - Status Received or Issue 5 - Status Received or Issue 6 - Status Received or Issue 7 - Status Received" is either "Status A or Status B" then "Approved for Construction" column is checked.
I don't know why, but my response keeps triggering Smartsheet's security. I took a screenshot of it in a Word Doc. Let me know if you are able to read it, and in the mean time I will be reaching out to them to see what's going on...
This works perfectly, thanks again for the help really appreciated.
No worries. Happy to help!
=IF([Due Date]@row > TODAY(), IF(AND(Status@row = "In Progress", Status@row = "New", Status@row = "Not Started"), "Yes", "No"))) The goal is to flag items for escalation based on the due date and status. If the due date is in the past and the status of the risk or decision is in progress, not started, or new then I need to…
Hi - we are performing an audit and we need to take the data, and have the consumer validate that its accurate, and if not, identify the change required. What's the best way to tackle that? I was thinking a form but there could be lines and lines of data to validate; is it as simple as having them review the sheet for…
Ultimately, I need a good way to track if we are completing tasks on time based on our original estimates because we have users that estimate a task will take 5 days and when it takes 15 they just change the dates, and the project status still looks green, when is reality it is behind. I would like to have target start/end…