Feb 7, 2004 #1 C Cathy New member Joined Jan 10, 2004 Messages 2 I cant for the life of me work out this simple task: I have a named range (a complete row) in Excel and I want to move it down 1 line. Anybody know the trick? Thanks Cathy
I cant for the life of me work out this simple task: I have a named range (a complete row) in Excel and I want to move it down 1 line. Anybody know the trick? Thanks Cathy
Feb 9, 2004 #2 D DennisW Member Joined Feb 6, 2004 Messages 17 Cathy, [VB] Sub Move_Row() Dim rnRow As Range With ActiveSheet Set rnRow = .Range("Test") End With With Application .ScreenUpdating = False rnRow.Cut Rows("14:14") .ScreenUpdating = True End With End Sub [/VB]
Cathy, [VB] Sub Move_Row() Dim rnRow As Range With ActiveSheet Set rnRow = .Range("Test") End With With Application .ScreenUpdating = False rnRow.Cut Rows("14:14") .ScreenUpdating = True End With End Sub [/VB]