I am trying to index match across multiple sheets. Each sheet is specific to it's own project and I want to index certain values on a master tracker for all projects. Each sheet is broken down by site name and each site has it's own progression. The column name for the site is named Site ID and the column name for the progression is called Site Progression. I need to index the progression, but match the site ID's. Currently I have this formula I am trying:
=INDEX({ATC TMO CX Tracker Site Progression}, MATCH([Site ID]@row, {ATC TMO CX Tracker Site ID}, 0)), INDEX({MasTec CX Tracker Site Progression}, MATCH([Site ID]@row, {MasTec CX Tracker Site ID}, 0)), INDEX({SBA TMO CX Tracker Site Progression}, MATCH([Site ID]@row, {SBA TMO CX Tracker Site ID}, 0))
I can get it to work on one line (index matching to one sheet, however, I cannot figure out how to get this to work so that I can index match across multiple sheets. Is this even possible? Can anyone please help?