Good day,
I would just like to join the following array and display it in one string. I've got the following code which should be more or less in line with what I want to achieve. (this is just an outtake from the rest of my code)
I appreciate the help!
I would just like to join the following array and display it in one string. I've got the following code which should be more or less in line with what I want to achieve. (this is just an outtake from the rest of my code)
Code:
ReDim accndata(accs, 1)
For acccount = 1 To accs
accndata(acccount, 1) = Cells(rowbegin + 1, 3).Value
rowbegin = rowbegin + 1
ReDim Preserve accndata(accs, 1)
total = accndata(acccount, 1) & vbCrLf
Next acccount
MsgBox "the values of my dynamic array are: " & vbCrLf & total
I appreciate the help!