If cell contains any of the words in a list, return the next word

yits05

Board Regular
Joined
Jul 17, 2020
Messages
56
Office Version
  1. 2016
Platform
  1. Windows
Hello,

I know this is probably relatively simple, but I am trying to figure out how to construct a formula that checks to see if a cell contains any of the words from a list, and if so, returns the word to the immediate right of the identified word. So for example:

TextReturned:List
Hello my name is tommyHello
It is nice to get to know you tomtoNice
Good to meet you, tomyouMeet

Thank you!
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
paste the code below into a module.
put cursor on the line to inspect, run: getNextWord
use it as: msgbox getNextWord()
or have it post the return value into a cell : Activecell.offset(0,1).value = getNextWord()

Note, the keywords list are in its own sheet: keywords

Code:
Public Function getNextWord()
Dim vWord, vLine, vRet
Dim i As Integer
Dim bEndNextWord As Boolean
Dim wsSrc As Worksheet
On Error Resume Next  'GoTo errWrd
Set wsSrc = ActiveSheet
GetAllKeywords
wsSrc.Activate
vLine = ActiveCell.Value
i = InStr(vLine, " ")
While i > 0
  vWord = LCase(Left(vLine, i - 1))
  vLine = Trim(Mid(vLine, i + 1))
  vRet = ""
  If bEndNextWord Then GoTo endit
 
  vRet = gcolKeywords(vWord)
  If Len(vRet) <> 0 Then bEndNextWord = True
     'return next word and end
 
  i = InStr(vLine, " ")
Wend
vWord = ""
endit:
getNextWord = vWord
Set wsSrc = Nothing
End Function


Private Sub GetAllKeywords()
Set gcolKeywords = New Collection
Dim vWord
  'get all keywords
Sheets("keywords").Activate
Range("A2").Select
While ActiveCell.Value <> ""
      vWord = LCase(ActiveCell.Value)
      gcolKeywords.Add vWord, vWord
   
   ActiveCell.Offset(1, 0).Select  'next row
Wend
End Sub
 
Upvote 0
paste the code below into a module.
put cursor on the line to inspect, run: getNextWord
use it as: msgbox getNextWord()
or have it post the return value into a cell : Activecell.offset(0,1).value = getNextWord()

Note, the keywords list are in its own sheet: keywords

Code:
Public Function getNextWord()
Dim vWord, vLine, vRet
Dim i As Integer
Dim bEndNextWord As Boolean
Dim wsSrc As Worksheet
On Error Resume Next  'GoTo errWrd
Set wsSrc = ActiveSheet
GetAllKeywords
wsSrc.Activate
vLine = ActiveCell.Value
i = InStr(vLine, " ")
While i > 0
  vWord = LCase(Left(vLine, i - 1))
  vLine = Trim(Mid(vLine, i + 1))
  vRet = ""
  If bEndNextWord Then GoTo endit
 
  vRet = gcolKeywords(vWord)
  If Len(vRet) <> 0 Then bEndNextWord = True
     'return next word and end
 
  i = InStr(vLine, " ")
Wend
vWord = ""
endit:
getNextWord = vWord
Set wsSrc = Nothing
End Function


Private Sub GetAllKeywords()
Set gcolKeywords = New Collection
Dim vWord
  'get all keywords
Sheets("keywords").Activate
Range("A2").Select
While ActiveCell.Value <> ""
      vWord = LCase(ActiveCell.Value)
      gcolKeywords.Add vWord, vWord
  
   ActiveCell.Offset(1, 0).Select  'next row
Wend
End Sub
Thank you! Can I also just put =getNextWord(A2) formula in the adjacent cell, and drag down?
 
Upvote 0
Punctuation is usually a problem with this sort of question, but see if the following is any use.

If you wanted to use standard worksheet functions you could try the column C formula I have used below but note how punctuation could be returned. Given there may be several possible punctuation marks(?), dealing with them by standard formula is problematic.

You could also try this much more compact user-defined function as used in column D.

BTW, if it is possible to occur,
- what should happen if 2 or more list words appear in the same sentence?
- what should happen if the list word is the last word in the sentence?

VBA Code:
Function NextWord(sentence As String, Wordlist As Range) As String
  Dim RX As Object
  
  Set RX = CreateObject("VBScript.RegExp")
  RX.Ignorecase = True
  RX.Pattern = "\b(" & Join(Application.Transpose(Wordlist.Value), "|") & ")\b( \b)(.+?\b)"
  If RX.test(sentence) Then NextWord = RX.Execute(sentence)(0).submatches(2)
End Function

yits05_1.xlsm
ABCD
1TextListReturned:Returned:
2Hello my name is tomHellomymy
3It is nice to get to know you tomNicetoto
4Good to meet you, tomMeetyou,you
5  
6No list words here  
Next Word
Cell Formulas
RangeFormula
C2:C6C2=IFNA(TRIM(RIGHT(LEFT(SUBSTITUTE(REPLACE(A2,1,LOOKUP(LEN(A2),SEARCH(B$2:B$4,A2)),"")," ",REPT(" ",100)),200),100)),"")
D2:D6D2=NextWord(A2,B$2:B$4)
 
Upvote 0
Solution
Punctuation is usually a problem with this sort of question, but see if the following is any use.

If you wanted to use standard worksheet functions you could try the column C formula I have used below but note how punctuation could be returned. Given there may be several possible punctuation marks(?), dealing with them by standard formula is problematic.

You could also try this much more compact user-defined function as used in column D.

BTW, if it is possible to occur,
- what should happen if 2 or more list words appear in the same sentence?
- what should happen if the list word is the last word in the sentence?

VBA Code:
Function NextWord(sentence As String, Wordlist As Range) As String
  Dim RX As Object
 
  Set RX = CreateObject("VBScript.RegExp")
  RX.Ignorecase = True
  RX.Pattern = "\b(" & Join(Application.Transpose(Wordlist.Value), "|") & ")\b( \b)(.+?\b)"
  If RX.test(sentence) Then NextWord = RX.Execute(sentence)(0).submatches(2)
End Function

yits05_1.xlsm
ABCD
1TextListReturned:Returned:
2Hello my name is tomHellomymy
3It is nice to get to know you tomNicetoto
4Good to meet you, tomMeetyou,you
5  
6No list words here  
Next Word
Cell Formulas
RangeFormula
C2:C6C2=IFNA(TRIM(RIGHT(LEFT(SUBSTITUTE(REPLACE(A2,1,LOOKUP(LEN(A2),SEARCH(B$2:B$4,A2)),"")," ",REPT(" ",100)),200),100)),"")
D2:D6D2=NextWord(A2,B$2:B$4)
Thanks a bunch - worked like a charm!
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,426
Members
448,961
Latest member
nzskater

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