Transfer Row to another sheet based on Cell

  • Thread starter Thread starter Karen
  • Start date Start date
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
 
If you have a cell that references the validation cell in a formula, you
can use the Worksheet_Calculate event.
 
In Excel 97, if your data validation list is delimited (typed in the
Data Validation dialog box, instead of a reference to a range on the
worksheet), the Worksheet_Change event should be triggered.
 
Many thanks for replying.
Unfortunately I did not succeed in getting the following sentence to
work and will try a different approach.
If LCase(cell.Value) = "yes" Then

End If

I agree that the change event would work when delimited but in order
to cater for the validation will try a "helper" column as this seems
the best way forward.

Many thanks again.
Karen
 
Hi Karen

It would be much faster and more efficient to make use of the AutoFilter
or AdvancedFilter method. Then copy/cut the visible cells.

Another tip is, when you need non case senstive comparisons, place

Option Compare Text

at the vey top of the module. Then ALL procedures in that module are NOT
case sensitive. By default Excel uses: Option Compare Binary

***** Posted via: http://www.ozgrid.com
Excel Templates, Training & Add-ins.
Free Excel Forum http://www.ozgrid.com/forum *****
 
Back
Top