I'm hoping this is possible. I'd like to change our current formula in the Retired column (checkbox column) from being different for the child row and parent row to one formula that will allow me to change the Retired column to a column formula column.
Here is what I have currently:
Parent Row: =IF(COUNT(CHILDREN()) = COUNTIF(CHILDREN(), 1), 1)
This will check the box retired if all the Children's boxes are checked.
Child Row: =IF(OR(COUNT([Conf Start Date]@row:[OnSite End Date]@row) = 0, [Conf End Date]@row > TODAY(), [Play End Date]@row > TODAY(), [OnSite End Date]@row > TODAY()), 0, 1)
This looks at all the End Dates for the various types of events and once all are in the past, checks the box.
Note: Some event types will be blank for these
Any assistance would be greatly appreciated.