Hi,
i spent couple of days with VBA code with no luck. the code must to find empty cell from sheet1("registration") - (this sheet is for new registration columnA->name, columnB->surname and columnC->date of birth) this must be deleted after time period 6 months (it is for security reason), but that´s OK i sucessfully programed it.
And now on based this deleted values from sheet("registration") in column A,B and C i am looking for some code where at other sheet("prihlaska")- (this is for statistics) must be that value deleted or renamed to "unregistered" or something like "not registered" but not delete values which are still at sheet("registration") - (less than 6 months period).
I have this code but it doesn´t work. Just renamed some randomly values at column A.
Sub povymazu()
Dim ws1 As Worksheet: Set ws1 = ActiveWorkbook.Sheets("Registrace")
Dim ws2 As Worksheet: Set ws2 = ActiveWorkbook.Sheets("Prihlaska")
Dim criteria As String
Dim criteria2 As String
Dim criteria3 As String
Dim found As Range
Dim found2 As Range
Dim found3 As Range
Dim i As Long
'Application.ScreenUpdating = False
For i = 100 To 2 Step -1
criteria = ws1.Cells(i, 1).value
On Error Resume Next
Set found = ws2.Range("A:A").Find(What:=criteria, lookat:=xlWhole)
On Error GoTo 0
If found Is Nothing Then
ws2.Cells(i, 1).value = ("Unregistered")
End If
Next i
'Application.ScreenUpdating = True
End Sub
Than you for any help.
Bookmarks