I am looking for solution to check a box in one sheet if a box is checked in a different sheet. I tested formula with same idea in current sheet with no issues. It just does not work with reference sheet.
=IF({Regulatory}@row = 1, 1, 0) #UNPARSEBLE
If I substitute reference with column in current sheet it works fine
=IF(IsProject@row = 1, 1, 0) Good
The final desire is to check a box in one sheet if a box is checked in any one of three boxes in a different sheet. But I couldn't get it to work for one box so I thought I would start with less complexity.