AlexanderBB
Well-known Member
- Joined
- Jul 1, 2009
- Messages
- 2,120
- Office Version
- 2019
- 2010
- Platform
- Windows
I want to convert a column of data into a string, with every row delimited with vblf.
My logic is to create an array like
Arr = .Range("A2:A" & .Cells(Rows.count, "A").End(xlUp).Row)
and then use join (Arr, vblf)
But Arr is 2 dimensional and Join doesn't work.
How might I best get round this ? Or is some other approach better?
My logic is to create an array like
Arr = .Range("A2:A" & .Cells(Rows.count, "A").End(xlUp).Row)
and then use join (Arr, vblf)
But Arr is 2 dimensional and Join doesn't work.
How might I best get round this ? Or is some other approach better?