ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Copy and Paste in the first empty available line. (https://www.excelbanter.com/excel-programming/369182-copy-paste-first-empty-available-line.html)

Etienne

Copy and Paste in the first empty available line.
 
Hello All,

I am starting to write a VBa code in order to copy 4 cells on the same line
in another sheet in order to keep the history. Right now, the present code
below just overwrite the previous data everytime I run it. I would like to be
able to have Excel copy on the next available empty line below the previous
one. How should I change my code?

Sub CopyandPaste()
Dim CopyRange As Range
Set CopyRange = Range("B5:D5")
CopyRange.Copy Destination:=Worksheets("Hist").Range("B7:D7")
End Sub

Thanks for your help.

Etienne

PCLIVE

Copy and Paste in the first empty available line.
 
This isn't test...so give it a shot.

Sub CopyandPaste()
Dim CopyRange As Range
Set CopyRange = Range("B5:D5")
CopyRange.Copy Destination:=Worksheets("Hist") _
.Range("B" & (Range("B65536").End(xlUp).Row) & ":D" &
(Range("B65536").End(xlUp).Row))
End Sub


"Etienne" wrote in message
...
Hello All,

I am starting to write a VBa code in order to copy 4 cells on the same
line
in another sheet in order to keep the history. Right now, the present code
below just overwrite the previous data everytime I run it. I would like to
be
able to have Excel copy on the next available empty line below the
previous
one. How should I change my code?

Sub CopyandPaste()
Dim CopyRange As Range
Set CopyRange = Range("B5:D5")
CopyRange.Copy Destination:=Worksheets("Hist").Range("B7:D7")
End Sub

Thanks for your help.

Etienne




Etienne

Copy and Paste in the first empty available line.
 
I get an error message of compiling at &":D"

Do you know why?

Thanks,

"PCLIVE" wrote:

This isn't test...so give it a shot.

Sub CopyandPaste()
Dim CopyRange As Range
Set CopyRange = Range("B5:D5")
CopyRange.Copy Destination:=Worksheets("Hist") _
.Range("B" & (Range("B65536").End(xlUp).Row) & ":D" &
(Range("B65536").End(xlUp).Row))
End Sub


"Etienne" wrote in message
...
Hello All,

I am starting to write a VBa code in order to copy 4 cells on the same
line
in another sheet in order to keep the history. Right now, the present code
below just overwrite the previous data everytime I run it. I would like to
be
able to have Excel copy on the next available empty line below the
previous
one. How should I change my code?

Sub CopyandPaste()
Dim CopyRange As Range
Set CopyRange = Range("B5:D5")
CopyRange.Copy Destination:=Worksheets("Hist").Range("B7:D7")
End Sub

Thanks for your help.

Etienne





Etienne

Copy and Paste in the first empty available line.
 
Sorry, I made an error typing.

Yet, the macro works but keeps on overwriting the previous data. Excel does
not copy on the next available line.

Etienne

"PCLIVE" wrote:

This isn't test...so give it a shot.

Sub CopyandPaste()
Dim CopyRange As Range
Set CopyRange = Range("B5:D5")
CopyRange.Copy Destination:=Worksheets("Hist") _
.Range("B" & (Range("B65536").End(xlUp).Row) & ":D" &
(Range("B65536").End(xlUp).Row))
End Sub


"Etienne" wrote in message
...
Hello All,

I am starting to write a VBa code in order to copy 4 cells on the same
line
in another sheet in order to keep the history. Right now, the present code
below just overwrite the previous data everytime I run it. I would like to
be
able to have Excel copy on the next available empty line below the
previous
one. How should I change my code?

Sub CopyandPaste()
Dim CopyRange As Range
Set CopyRange = Range("B5:D5")
CopyRange.Copy Destination:=Worksheets("Hist").Range("B7:D7")
End Sub

Thanks for your help.

Etienne





Ron de Bruin

Copy and Paste in the first empty available line.
 
See
http://www.rondebruin.nl/copy1.htm

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Etienne" wrote in message ...
Sorry, I made an error typing.

Yet, the macro works but keeps on overwriting the previous data. Excel does
not copy on the next available line.

Etienne

"PCLIVE" wrote:

This isn't test...so give it a shot.

Sub CopyandPaste()
Dim CopyRange As Range
Set CopyRange = Range("B5:D5")
CopyRange.Copy Destination:=Worksheets("Hist") _
.Range("B" & (Range("B65536").End(xlUp).Row) & ":D" &
(Range("B65536").End(xlUp).Row))
End Sub


"Etienne" wrote in message
...
Hello All,

I am starting to write a VBa code in order to copy 4 cells on the same
line
in another sheet in order to keep the history. Right now, the present code
below just overwrite the previous data everytime I run it. I would like to
be
able to have Excel copy on the next available empty line below the
previous
one. How should I change my code?

Sub CopyandPaste()
Dim CopyRange As Range
Set CopyRange = Range("B5:D5")
CopyRange.Copy Destination:=Worksheets("Hist").Range("B7:D7")
End Sub

Thanks for your help.

Etienne







Etienne

Copy and Paste in the first empty available line.
 
Perfect.

Thanks a lot for your help.

Etienne

"Ron de Bruin" wrote:

See
http://www.rondebruin.nl/copy1.htm

--
Regards Ron de Bruin
http://www.rondebruin.nl



"Etienne" wrote in message ...
Sorry, I made an error typing.

Yet, the macro works but keeps on overwriting the previous data. Excel does
not copy on the next available line.

Etienne

"PCLIVE" wrote:

This isn't test...so give it a shot.

Sub CopyandPaste()
Dim CopyRange As Range
Set CopyRange = Range("B5:D5")
CopyRange.Copy Destination:=Worksheets("Hist") _
.Range("B" & (Range("B65536").End(xlUp).Row) & ":D" &
(Range("B65536").End(xlUp).Row))
End Sub


"Etienne" wrote in message
...
Hello All,

I am starting to write a VBa code in order to copy 4 cells on the same
line
in another sheet in order to keep the history. Right now, the present code
below just overwrite the previous data everytime I run it. I would like to
be
able to have Excel copy on the next available empty line below the
previous
one. How should I change my code?

Sub CopyandPaste()
Dim CopyRange As Range
Set CopyRange = Range("B5:D5")
CopyRange.Copy Destination:=Worksheets("Hist").Range("B7:D7")
End Sub

Thanks for your help.

Etienne








All times are GMT +1. The time now is 02:53 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com