In Excel, I need to Concatenate every other cell into one "master" cell. I have used this formula to conquer before =SUBSTITUTE(TRIM(G2 & " " & BC2 & " " & BE2 & " " & BG2), " ", ", ")
but this alters the data when the data I am concatenate has a comma in it.
The range of cells that I need to concatenate is every other cell ranging from G2 all the way to BG2. What would be the best course of action to make this happen handling concatenation that involves comma lists?
EDIT
By what I mean with alters data is that this
S223 - Pills, S2323 - Patterns - Backstock, 1/Var
becomes this with the formula above
S223, -, Pills,, S2323, -, Patterns, -, Backstock,, 1/Var