Copy Columns

hallingh

Well-known Member
Joined
Sep 11, 2010
Messages
769
Hi guys. I have a worksheet that has a ton of columns, about 200. Each column has a different formula in it that need to be copied throughout the column. However, I only want it to copy down to the number of occupied rows in another sheet. Like this:

The sheet "Raw Data" has 14 rows that are filled out with data (but the actual data starts at row 2.) The sheet "Stage 1" has 200 columns with row 2 containing a unique formula in each column. I need it to copy that formula down so it has the same number of rows that are occupied in "Raw Data"

If this isn't clear please let me know... Any help is greatly appreciated..

Thanks!

Hank
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Maybe ...
Code:
    With Worksheets("Stage1").Range("A2").Resize(, 200)
        .Copy .Resize(Worksheets("Raw Data").UsedRange.Rows.Count)
    End With
 
Upvote 0
Ah it is working exactly like I specified, but now I've realized that I made an error, sorry!

Is there any way to have it count the number of occupied rows in "Raw Data" starting from row 3 instead of from row 1? Again, sorry for the mistake.

Thanks for the reply!

Hank
 
Upvote 0
Code:
    With Worksheets("Stage1").Range("A2").Resize(, 200)
        .Copy .Resize(Worksheets("Raw Data").UsedRange.Rows.Count - 2)
    End With
 
Upvote 0
Hmmm I figured that out by changing it to:

Code:
With Worksheets("Stage 1").Range("A2").Resize(, 200)
        .Copy .Resize(Worksheets("Raw Infopath Data (BAC)").UsedRange.Rows.Count - 2)
    End With

But now I'm still having trouble with it copying too many rows. If I type in a value for 18 rows in the "Raw Data" sheet, it successfully copies it to 18 rows the first time I run the code. BUT, if I then clear the contents of both sheets and only enter values for 2 rows in "Raw Data" and run it again, it still copies the formulas on "Stage 1" to 18 rows... Can't figure out why?

Would switching it to this format (and this syntax is off but you'll get the idea) To End.xlUp help?

Thanks again for the code, it's helped a lot in getting the wheels in motion.

Hank
 
Upvote 0
Well then, ...

Code:
    With Worksheets("Stage1").Range("A2").Resize(, 200)
        .Copy .Resize(Worksheets("Raw Data").Cells(Rows.Count, "A").End(xlUp).Row - 2)
    End With
 
Upvote 0
You're welcome, glad it worked for you.
 
Upvote 0

Forum statistics

Threads
1,224,351
Messages
6,178,060
Members
452,822
Latest member
MtC

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