I have a dataset with grade-level test results, and i want to be able to track any school's grade-level progress as a grades students go to higher grades. My data is "individually" identified at the school-grade level, using school code and grade.
After identifying the row with the correct school code and grade, I want to pull that grade's test result. For some reason though, my "if" statement is not working. Any idea what could be causing the problem?
Here's my code:
=IF(AND(A2:A4296="0100016",B2:B4296=3),F2:F4296)
What I think this code should be doing is - if a row in column A has the correct school code, and that same row's column B has the correct grade, then pull that same row's value in F. But for some reason, the above IF statement is returning a FALSE value.