D
darius
Hi
I have this code which works
With ActiveCell
.Offset(-1, 12).Copy
.Offset(0, 12).PasteSpecial
End With
It's poor practice for a macro to use the clipboard, so I try to do this
With ActiveCell
Range(.Offset(-1, 12).Address(RowAbsolute:=False, _
ColumnAbsolute:=False) & ":" & _
.Offset(0, 12).Address(RowAbsolute:=False, _
ColumnAbsolute:=False)).FillDown
End With
I probably don't need all the absolute:=false, but anyway, this seems
like it should work but doesn't. The formula in activecell.offset(-1,12)
doesn't get copied down.
Thanks.
I have this code which works
With ActiveCell
.Offset(-1, 12).Copy
.Offset(0, 12).PasteSpecial
End With
It's poor practice for a macro to use the clipboard, so I try to do this
With ActiveCell
Range(.Offset(-1, 12).Address(RowAbsolute:=False, _
ColumnAbsolute:=False) & ":" & _
.Offset(0, 12).Address(RowAbsolute:=False, _
ColumnAbsolute:=False)).FillDown
End With
I probably don't need all the absolute:=false, but anyway, this seems
like it should work but doesn't. The formula in activecell.offset(-1,12)
doesn't get copied down.
Thanks.