I have tried the INDEX and MATCH function in a number of ways and cannot get it to work. I have read the numerous posts but not getting it.
Sheet 1: Appointments
Field in Sheet 1: MRN
*one MRN can have multiple appointments.
Sheet 2: MRN Additional Information
Fields in Sheet 2: MRN, MRN Language
*MRN is unique ID in this table (no duplicates)
What I am trying to do is have the MRN Language from sheet 2 pull into sheet 1 using MRN@row.
Here are formula versions I have tried:
=INDEX({MRN Language}, MATCH(MRN@row, {MRNInfo1}, 0))
=INDEX({MRN Language}, MATCH(MRN@row, {MRN Master}, 0))
=IFERROR(INDEX({MRN Additional Information}:{MRN},MATCH([Column1]@row,{SS2 Column1},0)),"")
=VLOOKUP(MRN@row, {MRN Additional Details}, 2, 0) *note tried this to see if I could get something simpler to work.
Please teach me how I need to write this formula to work!