i want to make a macro that checks if the Date in Column A ist less then today. If so the macro should insert "done" in Column G.
Sub DoneCheck()
Dim rngZelle As Range, strText As String
With ActiveSheet
For Each c In Sheets("3. Umlagerungen").Range("A:A")
If c.Value < Int(Now) And Not (IsEmpty(c.Value)) Then c.Offset(0, 6).Value = "done"
Next c
End Sub
I know that it is very poorly coded but it works... The reason why I'm looking for help is because it runs really slow...
I tried it with Application.ScreenUpdating but it doesn't change anything.
Thank you in advance & greetings