hii
Try this ...
Sub copytlllst()
Dim lst As Long
Dim lst2 As Long
Dim lst3 As Long
Dim intr As Worksheet
Dim insnot As Worksheet
Set intr = Worksheets("Internal")
Set insnot = Worksheets("Int-SendOut")
With intr
lst = .Cells(.Rows.Count, "I").End(xlUp).Row
lst2 = .Cells(.Rows.Count, "H").End(xlUp).Row
lst3 = .Cells(.Rows.Count, "C").End(xlUp).Row
End With
Worksheets("Internal").Select
Range("I2:I" & lst).Select
Selection.Copy
Worksheets("Int-SendOut").Select
With insnot
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
End With
Worksheets("Internal").Select
Range("H2:H" & lst2).Select
Selection.Copy
Worksheets("Int-SendOut").Select
With insnot
Range("B2").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
End With
Worksheets("Internal").Select
Range("C2:C" & lst).Select
Selection.Copy
Worksheets("Int-SendOut").Select
With insnot
Range("C2").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
End With
End Sub
Bookmarks