I'm new to VBA-programming and came to a point, where I'm stuck.. This is probably not too difficult, but i would appreciate any help!
Basic declarations and other stuff:
Dim found As Range
Dim ArtNr As String
Tabelle1.Activate
ArtNr = InputBox("..")
Range("L1") = ArtNr
MsgBox ("..")
Here is the critical code, where I want to find a previously entered value and delete the line in which this value occurs:
EDIT: The line, that is to be deleted is not deleted.
Set found = ActiveSheet.Columns(2).Find _
(what:=ActiveSheet.Range("L1"), LookIn:=xlValues, lookat:=xlWhole)
If Not found Is Nothing Then found.EntireRow.Delete
End Sub
Any suggestions?