Hello Everyone,
I am trying to put the content of a range of cells in only one cell. Specifically the content is a list of names :
In my Sheet 1, I am adding a formula that is grouping all the names that are on the Sheet 2, Column A. In the Sheet 2, Column A, I have the following :
A2: Marlon Brando
A3: Marilyn Monroe
A4: Winona Ryder;
etc…
What I want in my Sheet 1, is retrieving in only one cell all the names that are recorded in the column A of the Sheet 2, using this simple format : Marlon Brando ; Marilyn Monroe ; Winona Ryder ; etc.
The formula that I am using is working, but I don’t think that this is the best approach, because I have to copy/paste a lot of times the formula then replace the number of the cell, until the last line with content :
=$sheet2.A2& " ; "& $sheet2.A3& " ; " & $sheet2.A4& " ; " etc…
Is there a way to retrieve all the information in a range of cells and printed in the same format ?
Something like :
=$sheet2 .range[A2;A18] & " ; "
I hope this question makes sense…