try:
Function FindWords(stInput As String)
Dim stOutput As String, stList() As String
Dim rng As Range, x
Set rng = Sheet1.Range("A1") 'Amend as necessary
stList = Split(Replace(Replace(rng.Value, """", ""), " ", ""), ",")
For Each x In stList
If InStr(UCase(stInput), UCase(x)) > 0 Then
stOutput = stOutput & " " & x
End If
Next x
FindWords = Trim(stOutput)
End Function
Use a cell in this workbook to link to the list of words in another workbook, if necessary, and reference the local range in the function (commented line).
Bookmarks