Taking columns from sheets

Serdarrk

New Member
Joined
Mar 7, 2018
Messages
36
Hello,

The following single file contains approximately 250 pages named by date. I need that opening new page in the file and take all pages' Y and Z columns starting from new page's D columns (I have to enter the names of the first three columns). I don't know it is possible but an other need when code copy and paste all Y and Z columns to new page, it must copy and paste name of every page to top of Y and Z columns (to 3.row). I hope I could tell. I will be very happy if you can help with this.


http://s7.dosya.tc/server3/9r93ou/01.02.2000-1.xls.html
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
I need to copy all pages' A,B,C,Y and Z columns and paste to new sheets like Sayfa1,Sayfa2,Sayfa3,Sayfa4,Sayfa5 because Sayfa1 not enough for them. How must I change your code to make it ? And How can I limit rows until for example 280?
 
Last edited:
Upvote 0
Just for clarification ... You now want to copy columns A, B, C, Y and Z starting in row 4 to a new sheet. Is this correct? Where in the new sheet do you want to paste the copied data and where do you want the sheet name to appear? When you say
How can I limit rows until for example 280?
do you mean that you don't want to copy the entire sheet but only 280 rows starting in row 4 of each sheet?
 
Upvote 0
Yes You understood me with this English thank you:). I mean excatly copy for example until 280. rows from 4th rows. It must start from A colums of new sheet and also names must be in first rows and I should say to you, one sheet will not be enough for all then code should continue on all new sheets like Sayfa1, Sayfa2, Sayfa3, Sayfa4 and Sayfa5 ( Sayfa means sheet)
 
Upvote 0
If you are using Excel 2007 or newer version, it will handle up to 16384 columns. In your original post, you mentioned that you had approximately 250 sheets. If you copy 5 columns from each sheet, that will give you a total of 1250 columns which leaves you with more than 16200 free columns on "Sayfa1". Older versions of Excel, before 2007, can handle only 256 columns. Which version of Excel are you using?
 
Upvote 0
I am using 2007 but if it is necassary I can try to set up 2010 or an other. İs 2010 enough to do it?
 
Last edited:
Upvote 0
Excel 2007 can handle up to 16384 columns so it should be enough. Do you want me to suggest a macro so that it now copies columns A, B, C, Y and Z from each sheet?
 
Upvote 0
Yes, copying all sheets' A,B,C,Y and Z colums with their names to Sayfa1 side by side. I tired you a lot but I really need it.
 
Last edited:
Upvote 0
Try:
Code:
Sub CopyCols()
    Application.ScreenUpdating = False
    Dim lColumn As Long
    Dim ws As Worksheet
    For Each ws In Sheets
        lColumn = Sheets("Sayfa1").Cells(1, Columns.Count).End(xlToLeft).Column
        If lColumn = 1 Then lColumn = 0
        If ws.Name <> "Sayfa1" Then
            Sheets("Sayfa1").Cells(1, lColumn + 1).Resize(, 5) = ws.Name
            ws.Range("A4:C284").Copy
            Sheets("Sayfa1").Cells(3, lColumn + 1).PasteSpecial xlPasteValues
            ws.Range("Y4:Z284").Copy
            Sheets("Sayfa1").Cells(3, lColumn + 4).PasteSpecial xlPasteValues
        End If
    Next ws
    Application.CutCopyMode = False
    Application.ScreenUpdating = True
End Sub
This macro will copy only 280 rows from each sheet. Start with a blank sheet "Sayfa1".
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,289
Members
452,631
Latest member
a_potato

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