I am having a total brain cramp and cannot figure out the formula I need for this.
two columns:
Task Status
Closed Date
There is automation setup that when someone marks a row as Task Status = Completed, it should capture the date and put it in the Closed Date column. Well, that automation works 90% of the time, but we currently have 219 rows where it did NOT work and that messes all of our productivity reports up. So, I am trying to come up with a coalesce type function that works like this:
=if([Task Status]@row = 'Completed',if(isblank([Closed Date]@row 1,[Last Modified Date]@row,[Closed Date])
If the task status is Completed, then show the Closed Date if it's not blank. If it is blank, then show the last modified date. I am sure it's probably some simple typo that I have, but my brain is about ready to burst. I appreciate any help. ☺️