Search though 10,000 lines to split across various tabs

glynn1969

Board Regular
Joined
Nov 24, 2018
Messages
80
Office Version
  1. 365
Platform
  1. Windows
Hello i have a work sheet with 10s of thousands of row entries and i am looking to search for a specific value in column A and based on that value copy the whole row to a specific worksheet.

I have simplified my example - here i have a worksheet with three variables in column A "Treadmill", "Bike" and "Rower" and based on the entry in column A i want to move the whole row to a tab called "Treadmill", "Bike" or "Rower". This does work but when i extend my data to thousands of rows excels hangs and takes a very long time to run.


Are there any quicker methods (note the number of splitting option requirements will rise to around 40/50 tabs)

Sub split_Excercise()
Dim totalentries As Integer
Dim treadmillentries As Integer
Dim bikeentries As Integer
Dim rowerentries As Integer
Dim i As Integer


Sheets(Array("Treadmill", "Bike", "Rower")).Select
Range("A2:e1048576").Select
Selection.ClearContents
Sheets("All Excercise").Select


totalentries = Worksheets("All Excercise").Cells(Rows.Count, 1).End(xlUp).Row

For i = 2 To totalentries
If Worksheets("All Excercise").Cells(i, 1).Value = "Treadmill" Then
Worksheets("All Excercise").Rows(i).Copy
Worksheets("Treadmill").Activate
treadmillentries = Worksheets("Treadmill").Cells(Rows.Count, 1).End(xlUp).Row

Worksheets("Treadmill").Cells(treadmillentries + 1, 1).Select
ActiveSheet.Paste
Cells(1, 1).Select

ElseIf Worksheets("All Excercise").Cells(i, 1).Value = "Bike" Then
Worksheets("All Excercise").Rows(i).Copy
Worksheets("bike").Activate
bikeentries = Worksheets("bike").Cells(Rows.Count, 1).End(xlUp).Row

Worksheets("bike").Cells(bikeentries + 1, 1).Select
ActiveSheet.Paste
Cells(1, 1).Select

ElseIf Worksheets("All Excercise").Cells(i, 1).Value = "Rower" Then
Worksheets("All Excercise").Rows(i).Copy
Worksheets("Rower").Activate
rowerentries = Worksheets("rower").Cells(Rows.Count, 1).End(xlUp).Row

Worksheets("rower").Cells(rowerentries + 1, 1).Select
ActiveSheet.Paste
Cells(1, 1).Select
End If
Next
Application.CutCopyMode = False
ThisWorkbook.Worksheets("All Excercise").Activate
Cells(1, 1).Select

End Sub
 

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.
Upvote 0
Hi,
try following & see if does what you want

VBA Code:
Option Explicit
Sub Split_Excercise()
    Dim wsData As Worksheet, wsNames As Worksheet, wsFilter As Worksheet
    Dim Datarng As Range, FilterRange As Range
    Dim rowcount As Long
    Dim FilterCol As Variant
    
    On Error GoTo progend
    
'******************************************************************************************************

'your master sheet
    Set wsData = ThisWorkbook.Worksheets("All Excercise")
    
'Column you are filtering
    FilterCol = "A"
    
'******************************************************************************************************
    
    With Application
        .ScreenUpdating = False: .DisplayAlerts = False
    End With
'add filter sheet
    Set wsFilter = ThisWorkbook.Worksheets.Add
    
    With wsData
        .Activate
'add password if needed
        .Unprotect Password:=""
        
        Set Datarng = .Range("A1").CurrentRegion
        
'extract values from FilterCol'to filter sheet
        .Cells(1, FilterCol).Resize(Datarng.Rows.Count).AdvancedFilter Action:=xlFilterCopy, _
        CopyToRange:=wsFilter.Range("A1"), Unique:=True
        
        rowcount = wsFilter.Cells(wsFilter.Rows.Count, "A").End(xlUp).Row
'set Criteria
        wsFilter.Range("B1").Value = wsFilter.Range("A1").Value
        
        For Each FilterRange In wsFilter.Range("A2:A" & rowcount)
'check for blank cell in range
            If FilterRange.Value <> "" Then
'add the FilterRange to criteria
                wsFilter.Range("B2").Value = FilterRange.Value
'check if sheet exists
                If Not Evaluate("ISREF('" & FilterRange.Value & "'!A1)") Then
'add new sheet
                    Worksheets.Add(After:=Sheets(Sheets.Count)).Name = FilterRange.Value
                End If
'set object variable to sheet
                Set wsNames = Worksheets(FilterRange.Value)
'clear sheet
                wsNames.UsedRange.Clear
'copy data
                Datarng.AdvancedFilter Action:=xlFilterCopy, CriteriaRange:=wsFilter.Range("B1:B2"), _
                CopyToRange:=wsNames.Range("A1"), Unique:=False
            End If
'autofit columns
            wsNames.UsedRange.Columns.AutoFit
'clear from memory
            Set wsNames = Nothing
        Next
        .Select
    End With
progend:
    wsFilter.Delete
    With Application
        .ScreenUpdating = True: .DisplayAlerts = True
    End With
    If Err <> 0 Then
        MsgBox (Error(Err)), vbCritical, "Error"
        Err.Clear
    End If
End Sub

Code should copy each row for value in column A to sheet of same name - if that sheet does not exist, code should create it

Dave
 
Upvote 0
That is absolutely fantastic and does more than i asked for..many thanks. Will need to spend hours now trying to decifer how it all works.
 
Upvote 0
not sure how to give you a credit score Dave..but manythanks again
 
Upvote 0
Just a question: Why split the data across multiple tabs? As it is now you can report more easily.
 
Upvote 0
Hi
The main use for this will be for accounting and will be for Cost Centres to be issued to individual areas (with master data consisiting of around 75,000 rows) - my example here was just as an example for a sheet i was working on for my sons gym record.
 
Upvote 0

Forum statistics

Threads
1,215,429
Messages
6,124,838
Members
449,193
Latest member
MikeVol

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