Results 1 to 4 of 4

Ignore the hidden rows from Count

Threaded View

  1. #1
    Registered User
    Join Date
    01-06-2009
    Location
    KL, Malaysia
    MS-Off Ver
    Excel 2003
    Posts
    57

    Ignore the hidden rows from Count

    Hi,

    I need to split the master copy to different sheets for 50 records each. There is hidden rows in the master copy. The code below is able to split the data but the no of records for each sheet is depends on the hidden rows. For examples, the second sheet will less than 50 records if there is a hidden row between. I need each sheet must has 50 records regardless the hidden records. I hope someone can help

    Thanks,
    Ling

    Sub SeparateData()
    Dim rLastCell As Range
    Dim lLoop, lCopy, a As Long
    
    
    Application.ScreenUpdating = False
    
    
    With ThisWorkbook.Sheets("ExportData")
        Set rLastCell = .Cells.Find(What:="*", After:=[a1], SearchDirection:=xlPrevious)
        
        For lLoop = 2 To rLastCell.Row Step 50
           'lCopy = lCopy + 1
            Worksheets.Add After:=Worksheets(Worksheets.Count)  'create worksheet
            For a = 1 To Sheets.Count
            .Range("1:1").EntireRow.Copy Range("A1")
            .Range(.Cells(lLoop, 1), .Cells(lLoop + 49, 1)).EntireRow.Copy Range("A2")
            Next a
        Next lLoop
       
    End With
    
    Application.ScreenUpdating = True
    
    End Sub
    Last edited by Apple Ling; 11-29-2012 at 03:03 AM.

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