hi I have this code below
Sub test2()
Dim c As Range
For Each c In Range("A1:Z50").Cells
c.Select
SendKeys "{F2}", True
SendKeys "{ENTER}", True
Next
End Sub
Its works fine but I would like the Macros to End when it finds an Entire blank row in the range A1:Z50 . This will save a lot of my time. As it will not validate empty cell in this range.