MJamison07
Technical User
I wrote the following to put a check mark in a cell selected with a mouse.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
ActiveCell.Select
ActiveCell = Chr(252)
End Sub
It works, but I encountered some problems:
I am not able to select a whole worksheet, row, or column.
I want to limit it to certain cells in the worksheet.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
ActiveCell.Select
ActiveCell = Chr(252)
End Sub
It works, but I encountered some problems:
I am not able to select a whole worksheet, row, or column.
I want to limit it to certain cells in the worksheet.