Struggle with MID Function

bobgrand

Active Member
Joined
Apr 14, 2008
Messages
254
Office Version
  1. 365
Platform
  1. Windows
Hello all,

In column Y I have quote numbers. In column A I need to put the quote number from column Y if it begins with CP or DC and blank if not.

I tried this but the result is not right and returning (#VALUE!)

=IF(MID(Y12,1,2="DC"),Y12,IF(MID(Y12,1,2="CP"),Y12,""))

Not sure what I am doing wrong here

Any help would be greatly appreciated.

Bob
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Hello all,

In column Y I have quote numbers. In column A I need to put the quote number from column Y if it begins with CP or DC and blank if not.

I tried this but the result is not right and returning (#VALUE!)

=IF(MID(Y12,1,2="DC"),Y12,IF(MID(Y12,1,2="CP"),Y12,""))

Not sure what I am doing wrong here
Your ending parentheses for the MID function are in the wrong location. right now you are testing if 2="DC" and if 2="CP". Try it this way..

=IF(MID(Y12,1,2)="DC",Y12,IF(MID(Y12,1,2)="CP",Y12,""))
 
Upvote 0
=IF(MID(Y12, 1, 2) = "DC", Y12, IF(MID(Y12, 1, 2) = "CP", Y12, ""))

or

=IF(OR(MID(Y12, 1, 2) = {"DC","CP"}), Y12, "")
 
Upvote 0
Hi,

Another way:

=IF(OR(LEFT(Y12,2)={"DC","CP"}),Y12,"")
 
Upvote 0
Darn Parentheses!! Thank you for all your help.

Have a great weekend
 
Upvote 0

Forum statistics

Threads
1,226,113
Messages
6,189,048
Members
453,522
Latest member
Seeker2025

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