Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi, When I insert a row I would like the formula from the row below to be automatically copied upwards. Many Thank -- T De Villier ----------------------------------------------------------------------- T De Villiers's Profile: http://www.excelforum.com/member.php...fo&userid=2647 View this thread: http://www.excelforum.com/showthread.php?threadid=55879 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
To do it manually, hightlight the entire row and press Ctrl-C (Copy) or
right-click and select "Copy". Then right click the same row and select "Insert Copied Cells". in VB do: (example to copy row 2) Range("2:2").Select Selection.Copy Selection.Insert shift:=xlDown Application.CutCopyMode = False "T De Villiers" wrote: Hi, When I insert a row I would like the formula from the row below to be automatically copied upwards. Many Thanks -- T De Villiers ------------------------------------------------------------------------ T De Villiers's Profile: http://www.excelforum.com/member.php...o&userid=26479 View this thread: http://www.excelforum.com/showthread...hreadid=558798 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Auto extract data & inserts rows additional rows automatically | Excel Discussion (Misc queries) | |||
automatically copying cells | Excel Worksheet Functions | |||
Copying multiple rows to other worksheets (but amount of rows varies) - How? | Excel Discussion (Misc queries) | |||
Automatically copying fomulae when Inserting rows | Excel Discussion (Misc queries) | |||
Automatically copying specified rows from a sheet to another | Excel Programming |