I have a simple piece of VBA code that works great but.....
after a while the code just stops working ???
The idea is to keep Cell A1 selected, and when a user selects a different cell, the selected cell should return to A1 again
Can anyone see what the problem should be ?
The code is
Private Sub Worksheet_SelectionChange(ByVal target As Range)
Dim Q As Variant
Q = Range("A1")
If Q = "" Then Range("A1").Select
End Sub