This is another slight spin off of another question I had asked.
How would I structure the COUNTIFS formula to ignore the parent row if child rows are present?
The main formula I am using is:
=COUNTIFS({FOLLOW UP Range 2}, AND(@cell > DATE(2021, 1, 1), @cell < DATE(2021, 1, 31)), {Follow Up Contractors}, FIND("ACCURATE", @cell) > 0)
Which works just fine (sorta). The problem lies mostly in how our data is laid out. In this particular instance, the word "ACCURATE" appears in both the parent AND child record, but I do NOT want to count it where it appears in the parent. Later it might appear in a row that does not have any child records, I would want to count that instance.
What do I need to modify to get this to do that? Or is it not quite possible? I would also like to clarify that the columns data type is dropdown single select (although we type things in there from time to time).