As per the title using VBA, I'm trying to cut & paste (adding commas) a text value (Column C) to the first cell above with a value (not blank), cutting only when the original cell's adjacent cell (Column B) is blank.
To demonstrate more succinctly, the following diagram (knowing the total rows is an unknown value) shows the starting point:
ColumnA ColumnB ColumbC
Row1 a b c
Row2 d
Row3 j k e
Row4 f
Row5 g
Row6 l m h
Row7 n o i
With the following diagram being the outcome after the above:
ColumnA ColumnB ColumbC
Row1 a b c, d
Row2
Row3 j k e, f, g
Row4
Row5
Row6 l m h
Row7 n o i