Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Give this a try...
Sub MoveErrors() Dim wksCurrent As Worksheet Dim wksNew As Worksheet Dim rngFirst As Range Dim rngFound As Range Dim rngAllFound As Range Dim rngToSearch As Range Dim strToFind As String strToFind = "DRG" Set wksCurrent = Sheets("Sheet1") Set rngToSearch = wksCurrent.Columns("C") Set rngFound = rngToSearch.Find(What:=strToFind, LookAt:=xlWhole) If rngFound Is Nothing Then MsgBox "Sorry. Nothing to Move" Else Set wksNew = Worksheets.Add Set rngFirst = rngFound Set rngAllFound = rngFound.EntireRow Do Set rngAllFound = Union(rngAllFound, rngFound.EntireRow) Set rngFound = rngToSearch.FindNext(rngFound) Loop Until rngFound.Address = rngFirst.Address rngAllFound.Copy wksNew.Range("A2").PasteSpecial xlPasteValues rngAllFound.Delete Application.CutCopyMode = False End If End Sub -- HTH... Jim Thomlinson "Lime" wrote: if I want to look for only certin data in a column say (Drg) and move the whole row of data to a new sheet in the workbook an call it " Errors" does anyone know how to approach? Thanks, Lime |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
slecting all entries to appear once | Excel Worksheet Functions | |||
slecting all entries to appear once | Excel Worksheet Functions | |||
Increase Your Business By Data Conversion, Data Format and Data EntryServices in India | Excel Worksheet Functions | |||
Data Entry Online, Data Format, Data Conversion and Data EntryServices through Data Entry Outsourcing | Excel Discussion (Misc queries) | |||
Slecting worksheets one by one.....possible? | Excel Programming |