Hi,
I would like to list values from an array of cells into one cell separated by a new line
example
years are given in column a
(a1,a2,a3) = (2002, 2004, 2008)
I would like to show all three years in cell b1. ie
b1 = a1 (linebreak) a2 (line break) a3
displayed as
b1= 2002 (linebreak) 2004 (line break) 2008
I know I can do this by
b1 = a1 & CHAR(10) & a2 & CHAR(10) & a3
But I would like to display the years by giving the start reference and the end reference ie. cell a1:a3
The reason for this necessity is that the number of years in each cell varies, ie. 3 rows in cell b1, 2 rows in cell b2 etc.
Bookmarks