Sign in to join the conversation:
Would you help with an auto checkbox formula please?
I want a checkbox to automatically check yes, if the sheet is 7 days past the created date and another checkbox in another column is not checked by the 7 day mark.
Hi,
Try something like.
=IF(AND(Created@row < TODAY(-7); Checkbox@row = 1); 1; 0)
The same version but with the below changes for your and others convenience.
=IF(AND(Created@row < TODAY(-7), Checkbox@row = 1), 1, 0)Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
Hello, I am looking for a fairly complicated formula (I think). I have two sheets: 1) IW POD and 2) Root Bushing Repair Tracker on sheet 2, I have a column named "Actual Execution Hours" In that column, on sheet 2, I need to sum the hours on sheet 1 in column "Total Actual Hours" IF these two columns match on both sheets -…
I've always struggled with calculating total count by Month; i can do it for every else but when you throw in dates, it throws me right off. Essentially what i am trying to do is calculate on another sheet the amount of travel done within the month of March This is the formula i am using, but it comes back with 0…
Hi Community, I have a sheet that contains, among others, columns titled "Priority" and "Contract ID". Multiple rows can have the same Contract ID and the same Priority. Priority values are 1-2-3 and restricted to dropdown list values only. To collect the number of unique Contract IDs that are Priority "1", I have this…