ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Moving data to another Sheet (https://www.excelbanter.com/excel-programming/418791-moving-data-another-sheet.html)

Novice Lee

Moving data to another Sheet
 
I was looking at another question and the folowing was suggested

Sub stance()
Dim MyRange
Dim copyrange As Range
Lastrow = Cells(Cells.Rows.Count, "D").End(xlUp).Row
Set MyRange = Range("D1:D" & Lastrow)
For Each C In MyRange
If UCase(C.Value) = "R" Then
If copyrange Is Nothing Then
Set copyrange = C.EntireRow
Else
Set copyrange = Union(copyrange, C.EntireRow)
End If
End If
Next
If Not copyrange Is Nothing Then
copyrange.Copy
Sheets("Resigned").Range("A1").PasteSpecial
End If
End Sub

How can I change it to copy the row that has anything in column A with
44OP- in. The spreadsheet has two blank lines in-between each row of data.

Thanks for any help

The Code Cage Team[_57_]

Moving data to another Sheet
 

SOmething like...
For Each C In MyRange
If C.OffSet(0,-3)="440P-" Then
C.EntireRow.Copy Destination:=Sheets("Resigned").Range("A" &
Rows.Count).End(xlUp).OffSet(1,0)
....etc


--
The Code Cage Team

Regards,
The Code Cage Team
------------------------------------------------------------------------
The Code Cage Team's Profile: http://www.thecodecage.com/forumz/member.php?userid=2
View this thread: http://www.thecodecage.com/forumz/showthread.php?t=5647



All times are GMT +1. The time now is 03:04 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com