Hello all,
I did a search for this and didn't find an answer. Maybe I'm not using the correct phrasing for what I want to do.
I have to lists - a list of stores and a list of items. I want to combine them so that each store has every item.
Example:
Stores Items
123 ABC
456 DEF
789 GHI
I want the result to be:
Column A Column B
123 ABC
123 DEF
123 GHI
456 ABC
456 DEF
456 GHI
789 ABC
789 DEF
789 GHI
I have 250 stores and 100 items. Is there any easy way to do this? Thanks.
I did a search for this and didn't find an answer. Maybe I'm not using the correct phrasing for what I want to do.
I have to lists - a list of stores and a list of items. I want to combine them so that each store has every item.
Example:
Stores Items
123 ABC
456 DEF
789 GHI
I want the result to be:
Column A Column B
123 ABC
123 DEF
123 GHI
456 ABC
456 DEF
456 GHI
789 ABC
789 DEF
789 GHI
I have 250 stores and 100 items. Is there any easy way to do this? Thanks.