Hello,
I’m trying to get my status to update appropriately.
I have a few different things going on here: But basically this is the formula to update the task status based on if the Due Date has been selected, the “Started?” toggle has been toggled “on”, certain date parameters have been met, and whether or not the done button has been pressed, indicating that the task is done. Please ask any questions you need, but the current formula is below:
Here’s the current formula:
If(IsBlank(thisRow.[Due Date])=false AND contains(thisRow.[Started?],true) and thisRow.[Start Date]<(thisRow.[Due Date]+5), List([In Progress], Ahead), if(IsBlank(thisRow.[Due Date])=false AND contains(thisRow.[Started?],true) and thisRow.[Start Date]=(thisRow.[Due Date]+1) and filter(thisRow.[Done?],false), List([In Progress], [Behind]), if(Isblank(thisRow.[Due Date])=false and isblank(thisRow.[Start Date])=false and filter(thisRow.[Done?],true), [Done!], [To Do] )))
And the current value is Done! So in total it’s not working properly at all, and I’m sure the logic is off. I tried the switch if formula to no avail. Terribly new at this!
Thanks all,
J