Please help!! - Copy cell to next row in different worksheet

Ritz

Board Regular
Joined
Sep 22, 2004
Messages
90
I need to copy cell AA3 to (NextRow, 4) in a different worksheet. How do I do that? I'm actually copying several different cells, however all of the other cells are on the Target Row and this is the entry I used to copy them (which works well)

Cells(Target.Row, 54).Copy Destination:=.Cells(NextRow, 5)


HELP!!!!
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Re: Please help!! - Copy cell to next row in different works

Here is what I'm currently using, however it moves the cursor to select the cell AA3 and I have to reposition it again and again to the row I'm actually working on.

Range("AE3").Select
Selection.Copy Destination:=.Cells(NextRow, 4)
 
Upvote 0
Re: Please help!! - Copy cell to next row in different works

Hi *******s,

Unless you need to copy the formats of the cell as well as the contents, it is easier to just transfer the contents without changing the selection:

.Cells(NextRow,5) = Cells(Target.Row,54)

Damon
 
Upvote 0
Re: Please help!! - Copy cell to next row in different works

.Cells(NextRow,5) = Cells(Target.Row,54)

This won't work, as the cell I'm needing to copy isn't in the target row. Targer.Row, 54 was just an example of what I'm using for my other information.

It's cell AA3 on a different (header) row that I'm needing to copy.
 
Upvote 0
Re: Please help!! - Copy cell to next row in different works

Hi again *******s,

In that case, how about

.Cells(NextRow,5) = Range("AA3")

Of course, you must have a With statement that qualifies the destination worksheet, and the source worksheet is the active worksheet.


Damon
 
Upvote 0

Forum statistics

Threads
1,203,082
Messages
6,053,420
Members
444,662
Latest member
AaronPMH

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top