Sign in to join the conversation:
Hi,
I would like to update the 'Status' Column to CLOSED when the 'Done' checkbox is CHECKED.
Hi Ashanth,
Try something like this.
Be aware that if you change the status manually, it will delete the formula, so you need to add conditions for the different statuses if you want to keep the formula.
=IF(Done@row = 1; "CLOSED")
The same version but with the below changes for your and others convenience.
=IF(Done@row = 1, "CLOSED")
Depending on your country, you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
I hope that helps!
Have a fantastic day!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
Hi Andree,
Thank you for the solution! It does work but the Status Column that is being affected is restricted to only dropdown options. And I need that column to be switch to "CLOSED" from whatever status it is currently in when 'Done' is CHECKED. Example; Status for one row can be in "REVIEW", but once i check the 'Done' box, the respective Status should change from "REVIEW" to "COMPLETE".
Andree alluded to this in his first statement, but if you automate one part of a dropdown you need to automate ALL of the dropdown states. The formula has to go in the place you want the results. Whenever anyone manually changes the dropdown status, your formula will be overwritten. So you will need to automate all of the other stages. I've seen this done by using checkboxes for each stage, or date input fields for the completion date of different stages.
Happy to help!
You'll have to either have a part in the formula for each status or use a third-party service, like Zapier. Is that an option?
Yes you guys are right! It worked
Thank you to both of you!
You're welcome. I'm happy to be of assistance.
Excellent!
Hey Andree and/or Mike,
Follow up to "adding conditions for the different statuses if you want to keep the formula."
Can you advise how that is spelled out?
I have a team member who would like to use a column of "Daily To Do" to assign days to tasks. If they are in card view and move something from "Thursday" to "DONE" we would like to automate it more fully to also check the "Done" box and vice versa, if they are in grid view and check "Done" we would like the "Daily To Do" column to be "DONE".
The "Daily To Do" options are: Monday, Tuesday, Wednesday, Thursday, Friday, DONE, To Schedule.
@Torie Hollingsworth
Hi Torie,
The third-party service, Zapier, is an excellent option for this scenario. Is that an option for you?
Would that work?
Have a fantastic week!
✅Did my post help or answer your question or solve your problem? Please help the Community by marking it as the accepted answer/helpful. It will make it easier for others to find a solution or help to answer!
So I keep getting #unparseable from my formula below. =COUNTIFS({Creative Marketing Request Tracker Range 5}[Start Date]:[Start Date], <=DATE(2025, 11, 30), [End Date]:[End Date], >=DATE(2025, 11, 1)) I have a lot of projects with different "Requested Delivery Date" (column header). Above I attempted to find how many…
Hello, We have a Supplier Dropdown with the name of each of our suppliers. I would like to create a formula that takes each of those values and goes out to another table (Supplier Directory) and returns the City, State, and Country of each of those suppliers. I have the following formulas that look up the city, state,…
Hello! I am attempting to create a gift card inventory log and a transaction log. I created a master sheet to house the general inventory. I also created a transaction log. My goal is for them to talk to each. The master sheet will house all of the gift card information like, the serial numbers, description/store, value,…