OK its just simple two lines of Code that for some reason don't work as expected. I'm sure its something simple but I can't put my finger on it:
Dim Series as Range Dim i as Integer Set Series = Range("A1:B1") i = 1 ' Following two lines apparently don't do anything ' I would have expected them to move value of cell B1 to A1, and make B1 blank Series.Value2(1, i) = Series.Value2(1, i + 1) Series.Value2(1, i + 1) = "" Example:
A B 1 "" 1 Desired Result:
A B 1 1 "" Again I know its a very simple( and simplified) code but I just can't figure it out.
Stack Overflowerror. The second time it crashed.