indi visual
Member
I'm using this in my sub:
Cell = Cell.Offset(, 1).Value + Cell.Offset(, 2).Value + Cell.Offset(, 3).Value etc...
But because I have 30 offset rows to merge, I'm sure there's an easier way to achieve this.
Also, some of the rows are shorter than others, which will result in me combining empty cells uneccessarily. Is there any way to concatenate the entire row while skipping blanks?
I guess concatenating blank cells won't hurt anything?
Cell = Cell.Offset(, 1).Value + Cell.Offset(, 2).Value + Cell.Offset(, 3).Value etc...
But because I have 30 offset rows to merge, I'm sure there's an easier way to achieve this.
Also, some of the rows are shorter than others, which will result in me combining empty cells uneccessarily. Is there any way to concatenate the entire row while skipping blanks?
I guess concatenating blank cells won't hurt anything?