I'm populating a sheet with data from two similar but different sheets. Very simple
Column one is a number, entered by a user. Column two and three add a prefix "MTA-" this is to make column three conform to the "row ID" of the reference sheets. Column four is a simple INDEX/MATCH:
=INDEX({Sheet - 2024 data range}, MATCH([Row ID]@row , {Sheet - 2024 data range}, 0))
Easy right? And it works fine, until I add column five, same thing but the 2025 data.
=INDEX({Sheet - 2025 data range}, MATCH([Row ID]@row , {Sheet - 2025 data range}, 0))
Because then column 4 starts to reference 2025 data or drops a reference completely and I get an error. I think I have another way to approach this, use SUBSTITUTE to remove the prefix in the source sheets and INDEX/Match against that, but that presupposing that the addition is causing problems. Bottom line I would like the user to enter a number (row ID without the alpha prefix) and look at the two sheets to return the contents of a cell (Created by). Two columns are fine but they keep getting mixed up, I don't want a huge nested formula for something so simple.