How can I use more than 64 levels of nesting

MasmaAbdulhamidli

New Member
Joined
Sep 11, 2022
Messages
22
Office Version
  1. 2016
Platform
  1. Windows
Hi. I can not complete my work because of the 64 levels of nesting issue. I have multiple sheets with data. And want to bring data to new base sheet with vlookup and iferror. But in the end when i finished formula there appear error. My formula is =IFERROR(VLOOKUP(B5;'Sheet1'!$B$2:$G$389;6;0);IFERROR(VLOOKUP(B5;'Sheet2'!$B$2:$E$54;4;0);IFERROR(VLOOKUP(B5;'Sheet3'!$B$2:$G$3;6;0);...... and so on. Can you help?
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
If VLOOKUP returns a number you could try using
Excel Formula:
=IFERROR(VLOOKUP(B5,Sheet1!$B$2:$G$389,6,0),0)+IFERROR(VLOOKUP(B5,Sheet2!$B$2:$G$389,6,0),0)+etc
If it returns a string could try
Excel Formula:
=IFERROR(VLOOKUP(B5,Sheet1!$B$2:$G$389,6,0),"")&IFERROR(VLOOKUP(B5,Sheet1!$B$2:$G$389,6,0),0)&etc

But are you sure you need to look on every sheet? I mean: would it be possible determine which sheet should be targeted and use INDIRECT to point to that sheet with one single Vlookup?
 
Upvote 0
Solution
If VLOOKUP returns a number you could try using
Excel Formula:
=IFERROR(VLOOKUP(B5,Sheet1!$B$2:$G$389,6,0),0)+IFERROR(VLOOKUP(B5,Sheet2!$B$2:$G$389,6,0),0)+etc
If it returns a string could try
Excel Formula:
=IFERROR(VLOOKUP(B5,Sheet1!$B$2:$G$389,6,0),"")&IFERROR(VLOOKUP(B5,Sheet1!$B$2:$G$389,6,0),0)&etc

But are you sure you need to look on every sheet? I mean: would it be possible determine which sheet should be targeted and use INDIRECT to point to that sheet with one single Vlookup?
Sorry for answering late. Thanks a lot. It works
 
Upvote 0

Forum statistics

Threads
1,223,230
Messages
6,170,883
Members
452,364
Latest member
springate

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top