A
Aksel Børve
I am going to use the value from MPA "C23" in the first column on the COPY
sheet. But each time I use the macro, the value has to paste to the first
empty cell in that column (Next Cell) .
The "Rows Count" works, but not the "Column count"
Why?
Sheets("MPA").Range("C23").Copy
Sheets("COPY").Select
Range(Column.Count, "C1").End(xlToLeft).Offset(0, 1).PasteSpecial
Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Sheets("MPA").Range("A1:W33").Copy
Sheets("COPY").Select
Cells(Rows.Count, "A").End(xlUp).Offset(2, 0).PasteSpecial
Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Thanks
Aksel
sheet. But each time I use the macro, the value has to paste to the first
empty cell in that column (Next Cell) .
The "Rows Count" works, but not the "Column count"
Why?
Sheets("MPA").Range("C23").Copy
Sheets("COPY").Select
Range(Column.Count, "C1").End(xlToLeft).Offset(0, 1).PasteSpecial
Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Sheets("MPA").Range("A1:W33").Copy
Sheets("COPY").Select
Cells(Rows.Count, "A").End(xlUp).Offset(2, 0).PasteSpecial
Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Thanks
Aksel