xcruc1at3r
Board Regular
- Joined
- Aug 4, 2011
- Messages
- 50
Hi Can Any One Modify this Marco so that it can paste Selected data from Sheet1 to 1st Available empty ROW in the Sheet2
Sub MoveData()
Dim Rng As Range
Set Rng = Selection 'assumed your selection on active sheet
Selection.Copy
'to paste on sheet name: "Sheet2"
Sheets("Sheet2").Range(Rng.Address).PasteSpecial (xlPasteAll)
End Sub
I need this because i want to maintain the database
The help will be highly appreciated
I need to submit this project as soon as possible it really important for my job
Sub MoveData()
Dim Rng As Range
Set Rng = Selection 'assumed your selection on active sheet
Selection.Copy
'to paste on sheet name: "Sheet2"
Sheets("Sheet2").Range(Rng.Address).PasteSpecial (xlPasteAll)
End Sub
I need this because i want to maintain the database
The help will be highly appreciated
I need to submit this project as soon as possible it really important for my job