I have two sheets with similar information taken in from different locations on both forms. I want to create a formula to Count if an entry is made by a location from EITHER form, which will uncheck a box if either sheet has the submission from a location. I was able to first input the first sheet into the formula:
=IF(COUNTIFS({Sheet 1 - Location Range}, @cell = [Location Column]@row) = 0, 1)
And this worked! But then I wanted to be able to add in the OR part to include the other sheet as well:
=IF(COUNTIFS({Sheet 1 - Location Range}, @cell = [Location Column]@row, OR({Sheet 2 - Location Range}, @cell = [Location Column]@row) = 0, 1)
But I keep getting an error. Any ideas?