Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks to Jim Thomlinson for the following code to move rows to another
worksheet. This works perfectly where the value in column AV is text however what I would like is for this column to be a formulae. This formulae is calculated on whether the case is closed and on date (giving "current"/"non current" result). The code doesn't seem to recognise the results if there is formulae in column AV. Please help. Sub MoveStuff() Dim rngToSearch As Range Dim rngFound As Range Dim rngFoundAll As Range Dim rngPaste As Range Dim strFirstAddress As String Set rngPaste = Sheets("_Non Current").Cells(Rows.Count, _ "A").End(xlUp).Offset(1, 0) Set rngToSearch = ActiveSheet.Columns("AV") Set rngFound = rngToSearch.Find(What:="closed", _ LookIn:=xlFormulas, _ LookAt:=xlWhole, _ MatchCase:=False) If rngFound Is Nothing Then MsgBox "There are no items to move." Else Set rngFoundAll = rngFound strFirstAddress = rngFound.Address Do Set rngFoundAll = Union(rngFound, rngFoundAll) Set rngFound = rngToSearch.FindNext(rngFound) Loop Until rngFound.Address = strFirstAddress rngFoundAll.EntireRow.Copy Destination:=rngPaste rngFoundAll.EntireRow.Delete End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
HOW WILL MOVE TO 2ND WORKSHEET | Excel Worksheet Functions | |||
How to move from one Worksheet to another. | Excel Discussion (Misc queries) | |||
Unable to Insert Worksheet/Move and copy worksheet Excel 2003 | Excel Worksheet Functions | |||
How do I move data from one worksheet to another? | Excel Discussion (Misc queries) | |||
How to move to the next worksheet if its protect | Excel Discussion (Misc queries) |