URGENT HELP Too many nesting levels!!!

HazelOCR

New Member
Joined
Feb 19, 2016
Messages
4
Hi please help.
I have the below formula but it has too many nesting levels:
=IF(C4="1st",'Step 1 Materiailty Assessment'!B25,IF(C4="2nd",'Step 1 Materiailty Assessment'!B26,IF(C4="3rd",'Step 1 Materiailty Assessment'!B27,IF(C4="4th",'Step 1 Materiailty Assessment'!B28,IF(C4="5th",'Step 1 Materiailty Assessment'!B29,IF(C4="6th",'Step 1 Materiailty Assessment'!B30,IF(C4="7th",'Step 1 Materiailty Assessment'!B31,IF(C4="8th",'Step 1 Materiailty Assessment'!B32,IF(C4="9th",'Step 1 Materiailty Assessment'!B33,IF(C4="10th",'Step 1 Materiailty Assessment'!B34,IF(C4="11th",'Step 1 Materiailty Assessment'!B35)))))))))))

I need a cell D3 to display an answer based on a selection from a dropdown box in C4 (1st -11th). The Answer in C4 will correspond to a value (text) from a range of cells in another Sheet ('Step 1 Materiality Assessment' B25:B35)
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Welcome to the forum!

You could try:

=INDEX('Step 1 Materiailty Assessment'!$B$25:$B$35,LEFT(C4,LEN(C4)-2))
 
Last edited:
Upvote 0
That is working!!! Thank you so much for the quick response I must remember that formula will come in handy :)
 
Upvote 0
try this

Code:
=INDEX('Step 1 Materiailty Assessment'!$B$25:$B$35,MATCH('Step 1 Materiailty Assessment'!C4,{"1st","2nd","3rd","4th","5th","6th","7th","8th","9th","10th","11th"},0),0)
 
Upvote 0

Forum statistics

Threads
1,215,450
Messages
6,124,912
Members
449,195
Latest member
Stevenciu

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