Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This Macro copies from 1 tab to another tab in a workbook. The tab that the
data is being pasted into, keeps pasting to the same row. I want the data pasted to the next empty row. ----------------------------------------------- Sub copydata() ' ' copydata Macro ' ' Keyboard Shortcut: Ctrl+t ' Application.Goto Reference:="R7C1" Rows("7:7").Select Selection.Copy ActiveSheet.Next.Select Application.Run "BLPLinkReset" Application.Goto Reference:="R8C1" Selection.End(xlDown).Select Range("A11").Select <----- how do I change this to = next blank row? Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False Sheets("Drop").Select Application.Run "BLPLinkReset" Application.CutCopyMode = False Application.Goto Reference:="R1C1" End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need macro to check if cell is not blank & previous cell is blank, copy information from row above & paste | Excel Programming | |||
Macro - Issue with cut and paste if a column is blank | Excel Programming | |||
Macro copy and paste = blank worksheet | Excel Discussion (Misc queries) | |||
Using a Macro to paste into Blank Cells | Excel Worksheet Functions | |||
Macro to paste data into next blank row | Excel Programming |