On Sheet 2 (named Attendance), I have the following formula:
On that sheet I have "4" in B2, and "2" in B3. The formula returns "6", as intended (since it found the word "Veev" in both rows).
However, when I paste that exact same formula on Sheet 1, it just returns "0". I cannot, for the life of me, figure out why. If I just try to reference "Attendance!B2" it will return "4" just fine, but it seems to be having some trouble in referencing the full row?
I have tried replacing "Attendance!2:2" with "Attendance!C2:ZZ2" but it didn't make a difference.
Any help would be greatly appreciated!
Code:
=IF(ISNUMBER(SEARCH("Veev",Attendance!2:2)),Attendance!B2,0)+IF(ISNUMBER(SEARCH("Veev",Attendance!3:3)),Attendance!B3,0)
However, when I paste that exact same formula on Sheet 1, it just returns "0". I cannot, for the life of me, figure out why. If I just try to reference "Attendance!B2" it will return "4" just fine, but it seems to be having some trouble in referencing the full row?
I have tried replacing "Attendance!2:2" with "Attendance!C2:ZZ2" but it didn't make a difference.
Any help would be greatly appreciated!