Hi, This is my first time posting on this forum, but I think I've made you a Macro that works. I'd really love some input on it.
Sub aa()
Dim OutSH As Worksheet
Dim DataSH As Worksheet
Dim Filas As Integer
Dim CurrentCell as range
Set OutSH = Sheets("Hoja2")
Set DataSH = Sheets("hoja1")
Set CurrentCell
Application.ScreenUpdating = False
Filas = DataSH.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
OutSH.Select
Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Select
DataSH.Select
Range("N2").Select
For i = 1 To Filas
If ActiveCell.Value = "SOLD" Then
ActiveCell.EntireRow.Copy
OutSH.Select
ActiveSheet.Paste
ActiveCell.Offset(1, 0).Select
DataSH.Select
ActiveCell.EntireRow.Delete
i = i - 1
Filas = Filas - 1
End If
Cells(i, 14).Select
Next
Application.ScreenUpdating = True
Range("N2").Select
End Sub
This works as long as the cells on column N are properly marked as SOLD (in CAPS) and Worksheets are Named Hoja1 for data Sheet and Hoja2 for OutputSheet should you requiere this differently just change the code. As for the using it without pressing Alt-f8 you could insert a button to activate the macro, but it might get in the way of your data.
Please try it and let me know if you need something else.
EDIT: This goes back and forth a lot in between worksheets, maybe someone more knowledgable can provide a sleeker cycle.
Bookmarks