Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi, i need this code to copy rows, but only from A to J (A:J).
Sub copy3() Dim lastRow As Long Dim MySheet As String MySheet = Sheets("Sheet1").Range("M1").Value lastRow = Worksheets(MySheet).Cells(Worksheets(MySheet).Rows .Count, "A").End(xlUp).Row Worksheets("Sheet1").UsedRange.Copy Worksheets(MySheet).Activate Range("A" & (lastRow + 1)).Select ActiveSheet.Paste Worksheets(MySheet).Range("A" & (lastRow + 1)).PasteSpecial Application.CutCopyMode = False Sheets("Sheet1").Activate Range("A1").Select End Sub Can this be done? Thanks! |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro range | Excel Discussion (Misc queries) | |||
Macro deletes row in range, macro then skips the row moved up | Excel Discussion (Misc queries) | |||
macro pop-up to set range? | Excel Worksheet Functions | |||
Macro Range | Excel Discussion (Misc queries) | |||
Use Range Name in Macro | Excel Worksheet Functions |