I'm a novice VBA user, but can adapt if someone can help me get started.
I would like to be able to bold (or color change) keywords in a text string where the keyword is found in a different cell on the same row (case insensitive match).
For example:
I would like to use column B (Name) as the keywords to find matches in column D (Notes).
In row 1, I would want the result to be: I need help with Excel. I don’t yet excel in it.
In row 2, I would want the result to be: MS Word is used more than WordPerfect.
If there is a way to do this without VBA or to save the results once run, even better.
I would like to be able to bold (or color change) keywords in a text string where the keyword is found in a different cell on the same row (case insensitive match).
For example:
ID | Name | Desc | Notes |
10 | Excel | None | I need help with Excel. I don’t yet excel in it. |
12 | Word | None | MS Word is used more than WordPerfect. |
I would like to use column B (Name) as the keywords to find matches in column D (Notes).
In row 1, I would want the result to be: I need help with Excel. I don’t yet excel in it.
In row 2, I would want the result to be: MS Word is used more than WordPerfect.
If there is a way to do this without VBA or to save the results once run, even better.