Nested multiple IF Statements not returning correct result

rrsteed

New Member
Joined
Sep 15, 2017
Messages
1
=IF(ISNUMBER(--LEFT(H11,"79")),"CORP-ADMIN",IF(ISNUMBER(--LEFT(H11,"10")),"CORP-ADMIN",IF(ISNUMBER(--LEFT(H11,"15")),"MA-RCC")))
The above Formula is returning "CORP-ADMIN" even if the cell value starts with "15". What's going on?
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
maybe try this...
=IF(OR(LEFT(H11,2)="79",LEFT(H11,2)="10"),"CORP-ADMIN",IF(LEFT(H11,2)="15","MA-RCC","Not Found"))
 
Upvote 0

Forum statistics

Threads
1,225,757
Messages
6,186,845
Members
453,379
Latest member
gabriellegonzalez

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