Sub welcheZeile()
Dim maxW
Dim rng As Range
maxW = Worksheets.Application.Max(Range(ActiveCell.Offset(0, 0), ActiveCell.Offset(2, 0)))
For Each rng In Range(ActiveCell.Offset(0, 0), ActiveCell.Offset(2, 0))
If rng.Value = maxW Then MsgBox "Zeile "& rng.Row: Exit Sub
Next
End Sub
Gruß Matthias