This tutorial goes beyond other simple check-mark tutorials. Here, I'll show you 3 methods to insert a check-mark into Excel, including using Macros/VBA and a UDF, or User Defined Function.
Basic Method to Insert a Check Mark into Excel
VBA Method to Insert a Check Mark into Excel
UDF that Inserts a Check Mark into Excel
This is the most basic way you can enter a check-mark, but it's kind of time consuming.
Now that you have a check-mark, you may want to enter it again and again. To do that, select the cell with the mark and hit Ctrl + C and then go to where you want it, select that cell, and hit Ctrl + V. Simple copy/paste.
To enter a check-mark using VBA, it's actually very simple.
ActiveCell.Value = ChrW(&H2713)
This allows you to use a simple function that you create to add a check mark to Excel.
Function CheckMarkAdd()
CheckMarkAdd = ChrW(&H2713)
End Function
Using this method, you only ever have to remember the UDF that you created and, in less than a second, you can type it in, hit Enter, and you have your check-mark.
This is my favorite method to use!
All of the above methods come in handy depending on the situation. My person favorite is the UDF method because I love UDFs and it's just so simple to use.
Download the sample workbook attached to this tutorial to get all of the code used here and try it yourself.