K
Karen
Hi
After a trawl through many posts I think I have found the macro that
accomplishes my task but for a small adjustment.
The macro transfers a row based on a cell entry, in this case where
YES appears in the fifth column. If I wished to tweak it so that the
macro recognised YES,Yes or yes what changes would be necessary to
make it work.
Another problem but for which I don't think there is a solution is
that if I use Data Validation for example with Yes. Is there any way
that a date could be entered in the cell next as Event macro's do not
seem to work.
TIA
Karen
Using Excel'97
Sub Archive()
Dim reference_value As Variant
Dim lastrow_lookup As Long, x As Long
With ThisWorkbook.Sheets("RECEIVED")
reference_value = .Range("C1")
lastrow_lookup = .Cells(Rows.Count, 1).End(xlUp).Row
End With
For x = 1 To lastrow_lookup
If Sheets("RECEIVED").Cells(x, 5) = reference_value Then
Sheets("RECEIVED").Range(Sheets("RECEIVED").Cells(x, 1), _
Sheets("RECEIVED").Cells(x, 7)).Cut _
Sheets("Archive").Cells(Sheets("Archive").Cells(Rows.Count, _
1).End(xlUp).Row + 1, 1)
End If
Next x
Sheets("RECEIVED").Range("A3").Select
DeleteBlankRows
End Sub
Sub DeleteBlankRows()
ActiveSheet.Range("A:A").SpecialCells(xlCellTypeBlanks).EntireRow.Delete
End Sub
After a trawl through many posts I think I have found the macro that
accomplishes my task but for a small adjustment.
The macro transfers a row based on a cell entry, in this case where
YES appears in the fifth column. If I wished to tweak it so that the
macro recognised YES,Yes or yes what changes would be necessary to
make it work.
Another problem but for which I don't think there is a solution is
that if I use Data Validation for example with Yes. Is there any way
that a date could be entered in the cell next as Event macro's do not
seem to work.
TIA
Karen
Using Excel'97
Sub Archive()
Dim reference_value As Variant
Dim lastrow_lookup As Long, x As Long
With ThisWorkbook.Sheets("RECEIVED")
reference_value = .Range("C1")
lastrow_lookup = .Cells(Rows.Count, 1).End(xlUp).Row
End With
For x = 1 To lastrow_lookup
If Sheets("RECEIVED").Cells(x, 5) = reference_value Then
Sheets("RECEIVED").Range(Sheets("RECEIVED").Cells(x, 1), _
Sheets("RECEIVED").Cells(x, 7)).Cut _
Sheets("Archive").Cells(Sheets("Archive").Cells(Rows.Count, _
1).End(xlUp).Row + 1, 1)
End If
Next x
Sheets("RECEIVED").Range("A3").Select
DeleteBlankRows
End Sub
Sub DeleteBlankRows()
ActiveSheet.Range("A:A").SpecialCells(xlCellTypeBlanks).EntireRow.Delete
End Sub