Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm hoping someone can help me.
I'd like to know what code I need to insert a row below the current line I'm working in, then to copy all formulae and formats from A50:AM50 (named range "property") and paste this into the same columns in the row that has been inserted. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
something like this
ActiveCell.Offset(1, 0).EntireRow.Insert Range("property").Copy ActiveSheet.Range("A" & ActiveCell.Row + 1) "Karen McKenzie" wrote: I'm hoping someone can help me. I'd like to know what code I need to insert a row below the current line I'm working in, then to copy all formulae and formats from A50:AM50 (named range "property") and paste this into the same columns in the row that has been inserted. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
See David McRitchie's site for Insert Rows code.
http://www.mvps.org/dmcritchie/excel/insrtrow.htm Gord Dibben MS Excel MVP On Mon, 19 Mar 2007 04:38:08 -0700, Karen McKenzie wrote: I'm hoping someone can help me. I'd like to know what code I need to insert a row below the current line I'm working in, then to copy all formulae and formats from A50:AM50 (named range "property") and paste this into the same columns in the row that has been inserted. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Insert Paste | Excel Worksheet Functions | |||
Paste or insert data before and after cel contents | Excel Discussion (Misc queries) | |||
What does InsertNameLabel & InsertNamePaste do? | Excel Discussion (Misc queries) | |||
Paste and Insert | Excel Discussion (Misc queries) | |||
insert and paste in one step | Setting up and Configuration of Excel |