Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can use
Selection.Insert Shift:=xlDown I have tried this and works well. You can also decide where you want to shift. Let me knos if it does not work in your code Thanks, Yogendra gav meredith wrote: afternoon, can someone please advise how this code should read so as to insert rows to hold the data pasted.(within the print area) cheers!!! Private Sub CommandButton1_Click() Sheets("quote2").Range("appendix").Copy Sheets("contract").Select Cells.FindNext(After:=ActiveCell).Activate Cells.Find(What:="appendix1.0", _ After:=ActiveCell, LookIn:=xlFormulas, _ LookAt:=xlPart, SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=False).Activate ActiveCell.Offset(2, 0).Select ActiveSheet.Paste End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
insert rows in a worksheet that do not change adjoining rows | Excel Discussion (Misc queries) | |||
How do i insert blank rows between data that is thousands of rows | Excel Discussion (Misc queries) | |||
Insert rows: Formats & formulas extended to additonal rows | Excel Worksheet Functions | |||
How do I insert blank rows between rows in completed worksheet? | Excel Discussion (Misc queries) | |||
How do i insert of spacer rows between rows in large spreadsheets | Excel Discussion (Misc queries) |