Nested IF Syntax Error

KirkM

New Member
Joined
Jun 15, 2015
Messages
7
Hi All,

I am using Excel 2013.
Trying to Nest 10 IF Statements but getting a syntax error.
The following are what I am try to Nest only using 3 as example:

IF(B7="No Adhesive",(B6+Sheet1!B9),"ERROR")
IF(B7="1 x 6/9mm SP",(B6+Sheet1!B10),"ERROR")
IF(B7="2 x 6/9mm SP",(B6+Sheet1!B11),"ERROR")

When I combine them:
IF(B7="No Adhesive",(B6+Sheet1!B9),"ERROR"),IF(B7="1 x 6/9mm SP",(B6+Sheet1!B10),"ERROR"),IF(B7="2 x 6/9mm SP",(B6+Sheet1!B11),"ERROR")

Not Working...tried various additions of parentheses no joy.
Grateful for any help.
At the moment dabbling in vlookup but results are iffy.
Thanks
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
=IFERROR(B6+INDEX(Sheet1!B9:B11,MATCH(B7,{"No Adhesive","1 x 6/9mm SP","2 x 6/9mm SP"},0)),"ERROR")
 
Upvote 0

Forum statistics

Threads
1,214,530
Messages
6,120,071
Members
448,943
Latest member
sharmarick

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