I have a checkbox column that I want to set up a formula for. This formula will reference another sheet for a checkbox, using a unique identifier. If the box is checked in any of the unique identifier rows in the reference sheet, it will return a checked box in the formula sheet.
The formula I found is:
=IF(COUNTIFS(IDColumn,[Unique ID]@row ,CheckedColumn,1)> 0,1,0)
This translates into the following for my columns.
=IF(COUNTIFS({Case Number1}, [Case Number]@row , {Expedite1}, 1) > 0, 1, 0)
I'm not getting an error message, but the box is not being checked.
The unique identifier is "08459402" on the SOW Request Sheet. One of the boxes for Expedite1 is checked for that unique identifier, so it should be returning a checked box on the 3-Week Expedite Box.
The 3-Week Expedite box contains the formula and should have the box checked.
Can someone help with why the box on 3-Week Expedite is not checked, please?