Hi,
I have a vba from another post to enable edit mode on a cell without double clicking. It works on the entire worksheet. How do I make it applicable to only certain column, say column F. VBA code I have for the entire worksheet is below:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
SendKeys "{F2}"
End Sub
I have a vba from another post to enable edit mode on a cell without double clicking. It works on the entire worksheet. How do I make it applicable to only certain column, say column F. VBA code I have for the entire worksheet is below:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
SendKeys "{F2}"
End Sub