Split Cells based on condition

Excelnovice2

New Member
Joined
Apr 1, 2014
Messages
5
Column A has data e.g. cat is fat xy>zzy, dog is random xyzzy, rat is a hoax.set xyz, frog is alon.23e xyz, bullseye.8 x.z
I have a look up table as below
Col D
xy>zzy
xyz
x.z

(Note: the values in Col D do not have a set number of characters, so I cant use a Right/left Formula)

I need a lookup to look for the values in Col D within Col A and return the values in Col D. Is this possible please?

All I really need is col D characters seperated from the first word/words.
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
I am pretty sure this can be done with a right function actually, but I am no formula wiz, so I would purpose a User Defined Function, is a little VBA alright for you? It would look something like this:

Code:
Function LastWord(CE As Range, Optional delim As String = " ")
Dim A
A = Split(CE, delim)
LastWord = A(UBound(A))
End Function
If you place this function in your personal.xlsb then you will use it like this in your worksheet:
Code:
=PERSONAL.XLSB!LastWord(A1)
Where A1 is the range of the particular cell you want to find the last word; drag down formula as needed.
Placing the code in the personal.xlsb will not work if you plan for others to be able to use the formula, whether to view data or to actually use it. If you should want to do that then you can place it in a module of your workbook in which you need the function and you will use it like this:
Code:
=LastWord(A1)
Should you want to use a different delimiter then that is an option for instance if you want a comma to be the delimiter:
Code:
=LastWord(A1,",")
 
Upvote 0
If you are needing simply a formula option, I got this to work out in tests I performed. Perhaps it works for your needs?

Code:
=IF(ISERR(FIND(" ",A1)),"",RIGHT(A1,LEN(A1)-FIND("*",SUBSTITUTE(A1," ","*",LEN(A1)-LEN(SUBSTITUTE(A1," ",""))))))
Again, drag down as needed.
 
Upvote 0

Forum statistics

Threads
1,216,075
Messages
6,128,668
Members
449,463
Latest member
Jojomen56

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