Recent content by simonking

  1. S

    any techies able to help Excel Vba

    This appears to work:- Sub findcell() For Each x In Range("a1", "a10") If x.Value > 0 Then Cells(x.Row + 1, x.Column + 1).Activate Exit For End If Next End Sub :)
Top