what i want is for cell C10 to contain the value of column 5 in my table, only if column 1 and 2 both match the date and name in cells a1 and b1
ive tried to achieve this with a formula but i can only get it to compare 2 things, formula below.
i can get it to match the date in the sheet with the date in the table, then give me column 5's value for that matching row, but i cant get it to acknowledge the name as well so cell C10 is getting a note for someone else because the dates match despite the names not matching.
i have also included a mockup up with 4 examples of what should be happening.
I think it is possible it can be done by formula, i found something when i was trying to google this problem but i dont have a clue what its talking about and i feel like it would be really easy with vba
https://exceljet.net/formula/index-and-match-with-multiple-criteria
=INDEX(TblNotes[#All],MATCH(Date,TblNotes[[#All],[Date]],0),5)
