+ Reply to Thread
Results 1 to 2 of 2

divide excel sheet

Hybrid View

  1. #1
    Registered User
    Join Date
    02-01-2011
    Location
    kalar,iraq
    MS-Off Ver
    Excel 2003
    Posts
    1

    divide excel sheet

    hello dears...

    i have a big column in excel sheet and i want to divide it into 5 part for facilitate processing.
    please help me how can i divide it.
    i mean for example if i have 1000000 row divide into 5 part with 200000 row for each of them

    regards..

  2. #2
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: divide excel sheet

    Hi hemnahmed
    Welcome to the forum
    can you use a VBA solution?
    Option Explicit
    Sub testp()
    Dim LastRow As Double
    Dim RowRng As Double
    Dim xNum As Double
    LastRow = Cells(Rows.Count, 1).End(xlUp).Row
    RowRng = Application.WorksheetFunction.Even(LastRow / 5)
    For xNum = 4 To 1 Step -1
    Range("A" & RowRng * xNum & ":A" & RowRng * (xNum + 1)).Cut Destination:=Range(Choose(xNum, "B1", "C1", "D1", "E1"))
    Next
    End Sub
    If the solution helped please donate to RSPCA

    Site worth visiting: Rabbitohs

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1