Is there a way to trigger a flag in the header row when there is 1 or more flags in the column?

I am trying to see if there is a way to have the flag in the title row go off when any flags are triggered in the sub rows below. In the photo attached, I would be referring to the blue row that would flag since the other white rows below it have 1 or more flags. I am not sure if this is possible, but figured this was the place to ask!


Tags:

Best Answers

  • Samuel Mueller
    Samuel Mueller Overachievers
    Answer ✓

    So create a second column called Helper At Risk and put this formula in that column:

    =COUNT(ANCESTORS())

    Then replace the formula in the At Risk Column with this:

    =IF([Helper At Risk]@row <> 0, IF(AND([End Date]@row <= TODAY(0), Complete@row <> "Complete", Status@row <> ""), 1, 0), IF(COUNTIFS(CHILDREN(), 1) > 0, 1, 0))

    and let me know if that meets your needs..


  • Samuel Mueller
    Samuel Mueller Overachievers
    Answer ✓

    @Alicia D I wonder if you hierarchy is different than the last situation - if you make this change does that work?

    =IF([Helper At Risk]@row >1, IF(AND([End Date]@row <= TODAY(0), Complete@row <> "Complete", Status@row <> ""), 1, 0), IF(COUNTIFS(CHILDREN(), 1) > 0, 1, 0))

    we may need to update alter formula still.

Answers