I have an excel file that has three columns - on column 1 I have a list of words, and on column 2 I have a list of attributes the prepended, while on column 3 I have a list of attributes to be appended.
How can I create a single list with all concatenations of attributes to be appended and prepended?
For example, I have words such as:
- Cumin
- Oregano
- Turmeric
Prepend terms such as
- recipes with
- benefits of
- substitute for
and Append terms such as
- recipes
- uses
- powder
... and I would like to have an automated way of joining these to get:
- recipes with cumin
- benefits of cumin
- substitute for cumin
- cumin recipes
- cumin uses
- cumin powder
- ...