Robert_Conklin
Board Regular
- Joined
- Jun 19, 2017
- Messages
- 173
- Office Version
- 365
- Platform
- Windows
- MacOS
I use the checkmark symbol a lot and I would like to use a macro to add a checkmark to a cell that I select. I tried recording a macro to add a checkmark to a selected cell but I need it set up so that it will place a checkmark in any cell that I select, not just the one that the recording filled in. Below is the recorded macro;
Any help would be greatly appreciated.
VBA Code:
Sub Insert_A_Checkmark()
' Insert_A_Checkmark Macro
ActiveCell.FormulaR1C1 = "ü"
Range("G18").Select
End Sub
Any help would be greatly appreciated.