Excel 2010 Copy last cells in each range and paste into another worksheet

lmusn89

New Member
Joined
Jul 7, 2014
Messages
4
Good afternoon,
Instead of using the “generic” 198 in the ranges below, is there code to specifically select the last cell, or cells, in the ranges and set those values to the various ranges below on the separate worksheet?? Any support is greatly appreciated!

Code:
propWb.Sheets("Slate Prop").Range("A2:C198").Value = currentWb.Sheets("Slateables").Range("A4:C198").Value
propWb.Sheets("Slate Prop").Range("D2:E198").Value = currentWb.Sheets("Slateables").Range("E4:F198").Value
propWb.Sheets("Slate Prop").Range("F2:F198").Value = currentWb.Sheets("Slateables").Range("R4:R198").Value
propWb.Sheets("Slate Prop").Range("N2:N198").Value = currentWb.Sheets("Slateables").Range("K4:K198").Value
propWb.Sheets("Slate Prop").Range("O2:Q198").Value = currentWb.Sheets("Slateables").Range("G4:I198").Value
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Try:
Code:
Cells(Rows.Count, "A").End(xlup).Row

Changing A to whatever column you want the last cell to be.
With your code example I guess it would look like this:


Code:
propWb.Sheets("Slate Prop").Range("A2:C198").Value = currentWb.Sheets("Slateables").Cells(Rows.Count, "A").End(xlup).Value
 
Upvote 0
Try:
Code:
Cells(Rows.Count, "A").End(xlup).Row

Changing A to whatever column you want the last cell to be.
With your code example I guess it would look like this:


Code:
propWb.Sheets("Slate Prop").Range("A2:C198").Value = currentWb.Sheets("Slateables").Cells(Rows.Count, "A").End(xlup).Value

Awesome! Thanks
 
Upvote 0

Forum statistics

Threads
1,214,584
Messages
6,120,384
Members
448,956
Latest member
JPav

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