Here is my problem:
I'm trying to compare dates on sheet A to a list of dates on Sheet B and if the dates match, fill in a number on sheet A.
If I move the data over to sheet A and use this formula works fine:
=INDEX([Column9]:[Column9], MATCH([Column4]@row, [Column8]:[Column8], 0))
When I use a cross sheet reference I get no match
=INDEX({Value I want Sheet B}, MATCH([Column4]@row, {List of Dates Sheet B}, 0))
When I select the sheet reference I'm selecting the entire column.
What am I doing wrong?