Using Concatenate and If Statement... Help Needed...

Offroadracer_814

New Member
Joined
Aug 7, 2015
Messages
23
I have this formula currently. =CONCATENATE("Scheduled to Ship"," ",TEXT(V2,"m/d/yy"))

However, Column V also has values that state "No Match". How can I get No Match as my return value instead of my current return of Scheduled to Ship No Match?

Thanks in Advance!

Kevin
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Perhaps this:

=IF(V2<>"No Match",CONCATENATE("Scheduled to Ship"," ",TEXT(V2,"m/d/yy")),V2)
 
Upvote 0
I have this formula currently. =IF(V2="No Match",V2,CONCATENATE("Scheduled to Ship"," ",TEXT(V2,"m/d/yy")))

However, Column V also has values that state "No Match". How can I get No Match as my return value instead of my current return of Scheduled to Ship No Match?
Maybe adding what I show in red above?
 
Last edited:
Upvote 0
Thanks you two. Both worked.

Now, I am going to attempt to learn from this. And then try to add an if statement if there is a blank cell in column V return it as a blank cell. So I maybe asking that question tomorrow (or later this week) if I can not figure it out. I have no VBA experience. Just learning by this board, a few co workers and reading language in the Macro when I record it.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,545
Messages
6,120,132
Members
448,947
Latest member
test111

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