how to Filter particular / specific word and cut & paste in different sheet by vba

m_vishal_c

Board Regular
Joined
Dec 7, 2016
Messages
209
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
HI, i need to filter particular / specific word in particular column like("A column") and select all(Filtered data), cut and paste , create another sheet in same workbook and paste into it.

for example
Need to filter "MPS" in code column and move those filtered in another sheet by creating new sheet

codeaddressPart
PIT-00000001300083532611
TAP-00000001250256747011
2FRE-65-00-MPS-02011
ALF-0000000125025866611
ALF-00000001250261293711
2FRE-65-00-MPS-031|2FRE-6511
ALF-00000001250262197711
TAP-0000000150055721511

<colgroup><col><col span="2"></colgroup><tbody>
</tbody>

heaps thanks in advance

thanks
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Pseudo VBA code:

define variant 2d string array
for every row
if find mps in string > 0 then
add column number to array with the data
end if
add new sheet to workbook
for i to array size
for j to array(i) size
cells (i,j) value = sheet value array(i)(j)
next j
next i

Once I get home if this doesn't help I'll write the code for you but it'd be rather simple. If you have a huge amount of rows might need to fix this code slightly in order to allow for a faster run-time, or I would recommend using another language besides VBA to sort it.
 
Upvote 0
Pseudo VBA code:

define variant 2d string array
for every row
if find mps in string > 0 then
add column number to array with the data
end if
add new sheet to workbook
for i to array size
for j to array(i) size
cells (i,j) value = sheet value array(i)(j)
next j
next i

Once I get home if this doesn't help I'll write the code for you but it'd be rather simple. If you have a huge amount of rows might need to fix this code slightly in order to allow for a faster run-time, or I would recommend using another language besides VBA to sort it.

Hi RileyC,
thanks for replying, i am new to macro so it will be great if you can provide me the code. i have to use vba because i am using excel to manipulate data

thanks


i have found some codes on internet and i changed as per my requirement please see below

Code:
[/COLOR]Application.ScreenUpdating = FalseDim x As Range
Dim rng, rng1 As Range
Dim last As Long
Dim sht As String


'specify sheet name in which the data is stored
sht = "Sheet1"


'change filter column in the following code
last = Sheets(sht).Cells(Rows.Count, "A").End(xlUp).Row
Set rng = Sheets(sht).Range("A1:F" & last)
Set rng1 = Worksheets("Need to be removed MPS").Range("B2")




For Each x In rng1 'Range(Sheets("Need to be removed 0").B2)   '([L2], Cells(Rows.Count, "L").End(xlUp)) ' K column has some specific value in excel so macro will create only those value's extra sheet
With rng
.AutoFilter
.AutoFilter Field:=1, Criteria1:=x.Value
.SpecialCells(xlCellTypeVisible).Copy


Sheets.Add(After:=Sheets(Sheets.Count)).Name = x.Value
ActiveSheet.Paste
End With
Next x


' Turn off filter
Sheets(sht).AutoFilterMode = False


With Application
.CutCopyMode = False
.ScreenUpdating = True

End With
[COLOR=#574123]
thanks

 
Last edited:
Upvote 0
.
Here is one method :

Code:
Option Explicit




Sub FilterCopyPaste()
    Dim strLastRow As String
    Dim rngC As Range
    Dim ws As Worksheet
    Dim strToFind As String, FirstAddress As String
    Dim wSht As Worksheet
    Dim rngtest As String
    Dim i As Integer
    Application.ScreenUpdating = False
    
    Set wSht = Worksheets("Sheet2")
    strToFind = InputBox("Enter Search Term")
    
    On Error Resume Next


    If SheetExist(strToFind) Then
        MsgBox "The sheet name   " & strToFind & "   already exists" & vbCrLf & _
        "Please delete the sheet   " & strToFind & "   and try again." & vbCrLf & _
        "Cancelling process.", vbCritical, "Cancelling Request"
        Exit Sub
    End If
    
    With ActiveSheet.Range("A2:Z30000")
        Set rngC = .Find(what:=strToFind, LookAt:=xlPart)
            If Not rngC Is Nothing Then
                FirstAddress = rngC.Address
                Set ws = ThisWorkbook.Sheets.Add(After:= _
                         ThisWorkbook.Sheets(ThisWorkbook.Sheets.Count))
                    ws.Name = strToFind
                    ws.Range("A1").Value = "Code"
                    ws.Range("B1").Value = "Address"
                    ws.Range("C1").Value = "Part"
                    ws.Range("A1").ColumnWidth = 30
                    ws.Range("B1").ColumnWidth = 10
                    ws.Range("C1").ColumnWidth = 10
                Do
                    strLastRow = Sheets(Sheets.Count).Range("A" & Rows.Count).End(xlUp).Row + 1
                    rngC.EntireRow.Copy Destination:=ActiveSheet.Cells(strLastRow, 1)
                    Set rngC = .FindNext(rngC)
                Loop While Not rngC Is Nothing And rngC.Address <> FirstAddress
            End If
    End With
    
    MsgBox "Process Complete !", vbInformation, "Process Complete"
End Sub




Function SheetExist(strSheetName As String) As Boolean
    Dim i As Integer


    For i = 1 To Worksheets.Count
        If Worksheets(i).Name = strSheetName Then
            SheetExist = True
            Exit Function
        End If
    Next i
End Function

Download workbook : https://www.amazon.com/clouddrive/share/fbthhk0BCQ5mkS7KUwQ2MXpvJwtw4XMwXu9zmvXq9nJ
 
Upvote 0
.
Here is one method :

Code:
Option Explicit




Sub FilterCopyPaste()
    Dim strLastRow As String
    Dim rngC As Range
    Dim ws As Worksheet
    Dim strToFind As String, FirstAddress As String
    Dim wSht As Worksheet
    Dim rngtest As String
    Dim i As Integer
    Application.ScreenUpdating = False
    
    Set wSht = Worksheets("Sheet2")
    strToFind = InputBox("Enter Search Term")
    
    On Error Resume Next


    If SheetExist(strToFind) Then
        MsgBox "The sheet name   " & strToFind & "   already exists" & vbCrLf & _
        "Please delete the sheet   " & strToFind & "   and try again." & vbCrLf & _
        "Cancelling process.", vbCritical, "Cancelling Request"
        Exit Sub
    End If
    
    With ActiveSheet.Range("A2:Z30000")
        Set rngC = .Find(what:=strToFind, LookAt:=xlPart)
            If Not rngC Is Nothing Then
                FirstAddress = rngC.Address
                Set ws = ThisWorkbook.Sheets.Add(After:= _
                         ThisWorkbook.Sheets(ThisWorkbook.Sheets.Count))
                    ws.Name = strToFind
                    ws.Range("A1").Value = "Code"
                    ws.Range("B1").Value = "Address"
                    ws.Range("C1").Value = "Part"
                    ws.Range("A1").ColumnWidth = 30
                    ws.Range("B1").ColumnWidth = 10
                    ws.Range("C1").ColumnWidth = 10
                Do
                    strLastRow = Sheets(Sheets.Count).Range("A" & Rows.Count).End(xlUp).Row + 1
                    rngC.EntireRow.Copy Destination:=ActiveSheet.Cells(strLastRow, 1)
                    Set rngC = .FindNext(rngC)
                Loop While Not rngC Is Nothing And rngC.Address <> FirstAddress
            End If
    End With
    
    MsgBox "Process Complete !", vbInformation, "Process Complete"
End Sub




Function SheetExist(strSheetName As String) As Boolean
    Dim i As Integer


    For i = 1 To Worksheets.Count
        If Worksheets(i).Name = strSheetName Then
            SheetExist = True
            Exit Function
        End If
    Next i
End Function

Download workbook : https://www.amazon.com/clouddrive/share/fbthhk0BCQ5mkS7KUwQ2MXpvJwtw4XMwXu9zmvXq9nJ


heaps thanks for this code.

(1) i do have a large data when i run this code it ask me "Msg box" which data need to be filtered. but it shows other data too.
(2) after copy and creating new sheet, i need to remove those data from Sheet1 and create new workbook on same name(Filtered name)


Please guide me, much appreciate your help

thanks
 
Upvote 0
heaps thanks for this code.

(1) i do have a large data when i run this code it ask me "Msg box" which data need to be filtered. but it shows other data too.
(2) after copy and creating new sheet, i need to remove those data from Sheet1 and create new workbook on same name(Filtered name)


Please guide me, much appreciate your help

thanks

and another thing, that dialog box check entire sheet. there are changes that "MPS" word contains many columns. i need to run only particular column so it wont give wrong calculation.
If you want then i can send you file. please let me know

thanks
 
Upvote 0

Forum statistics

Threads
1,214,943
Messages
6,122,370
Members
449,080
Latest member
Armadillos

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