How can I use more than 64 levels of nesting

bemp87

Board Regular
Joined
Dec 10, 2016
Messages
102
Can someone please help! I have the following data in two columns, 'Column A' and 'Column B' that goes down to Row '163' with Data. In 'Column A' are names of systems in my organization, in 'Column B' are the descriptions for each system, I am running into the issue of 'cannot have more than 64 levels of nesting'. they way it was working currently before I got past 64 levels of nesting is, no matter which row the 'System Name' is in Column A, the description to match it would follow: please see brief line of code below:

SystemCodes = Is a worksheet that stores all the systems and names in non-alphabetical order
Codes = is the worksheet where the below formula is put in starting in cell B2.

Code:
=IF(A2=SystemCodes!$A$2,SystemCodes!$B$2,IF(A2=SystemCodes!$A$3,SystemCodes!$B$3,.... and so on until 163

I cannot complete my project because of the 64 levels of nesting issue.. Can someone please help me find a work around, all the data I am trying to pull is Text and numerical which is sometimes in the same cell.

Thanks in advance
Thanks in advance!
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Have you tried a VLOOKUP formula instead ??
Something like

Code:
=VLOOKUP(A2,SystemCodes!$A$2:$B$164,2,0)

drag down as required
 
Upvote 0
Thank you so much, it's working perfectly! One quick follow-up question, for empty cells that contain no data it's giving an error of "#N/A", any idea on how to make the cell blank if returned with no value?

Have you tried a VLOOKUP formula instead ??
Something like

Code:
=VLOOKUP(A2,SystemCodes!$A$2:$B$164,2,0)

drag down as required
 
Upvote 0
yep, try using
Code:
=IF(ISERROR(VLOOKUP(A2,SystemCodes!$A$2:$B$164,2,0)),"",VLOOKUP(A2,SystemCodes!$A$2:$B$164,2,0))
 
Upvote 0

Forum statistics

Threads
1,215,432
Messages
6,124,856
Members
449,194
Latest member
HellScout

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