I have an ID number that can be located in one of multiple Smartsheet's. I would like to look for and match this ID number and return a field from the same row from whichever Smartsheet (SS)matches the ID number.
I have multiple formulas that allow me to find the matching ID# from only one SS:
1) =VLOOKUP([AIE-ID#]@row, {No Action[s] Range 2}, 12, false)
2) =INDEX({No Action[s] Range 3}, MATCH([AIE-ID#]@row, {No Action[s] Range 1}, 0))
But I need to look in other SS's to find the matching ID number as well. I have not been able to get a nested IF statement to work. I've tried:
1) =IF([AIE-ID#]@row = {Action[s] Plan Range 1}, VLOOKUP([AIE-ID#]@row, {Action[s] Plan Range 2}, 22, true), IF([AIE-ID#]@row = {No Action[s] Range 1}, VLOOKUP([AIE-ID#]@row, {No Action[s] Range 2}, 12, true), ""))
The formula will be located in the IE Course Evaluation ImprovementComments column. The formula should be looking in the Action[s] Plan SS and then looking in the No Action[s] SS to match the ID number and pull return whatever is in the ImprovementComments column from those respective SS's.
Here are pictures:
Any help would be sincerely appreciated. THANK YOU IN ADVANCE.