Question

I have spent about 2 days now trying to copy and paste row by row... I have about 69 out of 600.

My problem is this: I have 2 Spreadsheets. Spreadsheet 1 has the name of procedures 1-602. In Spreadsheet 2 I have the same procedures followed by their corresponding duration times, and specialties. Spreadsheet 2 however, is a master file so it has about 10,000 procedures. I have to literally Ctrl Find the procedures from spreadsheet 1, then copy and paste the information following the name in A2:A6 or B2:B6. I have tried IFError and Vlook up but it says that I am missing parts to my formula. Is what I am trying to do possible? What I want it to do is to look at the procedure name from Spreadsheet 1, find it in spreadsheet 2 and bring back that information on the rows behind it ei. A2:A6.

Was it helpful?

Solution

Try the following, update the +0 to +1, +2, etc. to retrieve additional rows.

 =offset(sheet2!$A$1,match(Sheet1!A1,Sheet2!$a:$a,0)+0,0,1,1)
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top