Many apps can create checklists, but do you really need yet another app? If you're already using spreadsheets, look no further. You can make a checklist in Microsoft Excel easily.

Even if you don't want to use it as an everyday to-do list app, a checklist is a good way to keep track of what you still need to do in your spreadsheet, directly in the spreadsheet itself.

Let's see how to create a checklist in Excel in five minutes or less.

How to Make a Checklist in Excel

We'll show you how to create an Excel checklist with checkboxes you can tick off as you complete the items. It will even indicate when you've checked off all the items, so you can tell at a glance.

Here are the simple steps we'll outline in more details below:

  1. Enable the Developer Tab.
  2. Enter the checklist items into your spreadsheet.
  3. Add the checkboxes and advanced formatting.

1. Enable the Developer Tab

To create a checklist, you must enable the Developer tab on the ribbon. To do this, right-click on the ribbon and select Customize the Ribbon.

Screenshot of Customize the Ribbon option in Excel

In the list of Main Tabs on the right side of the Excel Options dialog box, check the Developer box and then click OK.

Screenshot of Excel Options with the Developer Tab

2. Enter the Checklist Items Into Your Spreadsheet

Enter your to-do list, one item per cell. In our example, we have a cell with the Total Items and one with the total Items Packed, or how many items are checked off on our list.

The Am I good to go? cell will be red with NO in it if all the items are not checked off.

Once you check off all the items, the Am I good to go? cell turns green and will read YES.

Click the Developer tab. Then, click Insert in the Controls section and click the Check Box (Form Control).

Screenshot of Excel checklist with a checkbox control

3. Add the Checkboxes

Click in the cell into which you want to insert the checkbox. You'll see that there's text to the right of the checkbox. We only want the text box, not the text. While the checkbox control is selected, highlight the text next to the checkbox, and delete it.

Screenshot that shows the insertion of a checkbox in Excel

The checkbox control does not automatically resize once you've deleted the text in it. If you want to resize it, right-click on the cell to select the checkbox and then left-click on the checkbox (to make the context menu disappear). It will be selected with circles at the corners (as shown above).

Drag one of the circles on the right side towards the checkbox to resize the outline to just the size of the checkbox. Then, you can move the checkbox to the center of the cell with the four-headed cursor.

Now, we want to copy that checkbox to the rest of our to-do list items.

To select the cell containing the checkbox, select any cell around it without a checkbox. Then, use one of the arrow keys on your keyboard to move to the cell with the checkbox.

To copy the checkbox to the other cells, move your cursor over the bottom-right corner of the selected cell with the checkbox until it turns into a plus sign. Make sure the cursor is NOT a hand. That will check the box.

Drag the plus sign down over the cells into which you want to copy the checkbox and release the mouse button. The checkbox is copied to all those cells.

Screenshot that show how to copy checkbox to multiple cells

Advanced Checklist Formatting

Depending on what you want to use your checklist for, you can add further formatting elements to validate your list and summarize its status.

Create a True/False Column

For this step, we need to use the column to the right of the checkboxes to store the TRUE and FALSE values for the checkboxes. That allows us to use those values to test if all the boxes are checked or not.

Right-click on the first checkbox (not the cell with the checkbox) and select Format Control.

Screenshot of how to use Format Control with checkbox

On the Control tab on the Format Object dialog box, click the cell selection button on the right side of the Cell link box.

Screenshot of Cell selection box in Excel

Select the cell to the right of the checkbox cell. An absolute reference to the selected cell is inserted in the Cell link box on the compact version of the Format Control dialog box.

Click the cell selection button again to expand the dialog box. Click OK on the dialog box to close it.

Repeat the procedure for each checkbox in your list.

Screenshot of inserting format control in all cells

Enter Total Items and Calculate Items Checked

Next, enter the total number of checkboxes in your list into the cell to the right of the Total Items cell.

Now, let's use a special function that calculates how many checkboxes have been checked.

Enter the following text into the cell to the right of the cell labeled Items Packed (or whatever you called it) and press Enter.

=COUNTIF(C2:C9,TRUE)

This counts the number of cells in the C column (from cell C2 through C9) that have the value TRUE.

In your sheet, you can replace "C2:C9" with the column letter and row numbers corresponding to the column to the right of your checkboxes.

Screenshot of CountIf formula in Excel

Hide the True/False Column

We don't need the column with the TRUE and FALSE values showing, so let's hide it. Click on the lettered column heading to select the whole column. Then, right-click on the column heading and select Hide.

Screenshot of how to hide the True-False column in Excel

The lettered column headings now skip C, but there's a double line indicating a hidden column.

Check If All Checkboxes Are Checked

We'll use the IF function for Am I good to go? (or whatever you call it) to see if all the checkboxes are checked. Select the cell to the right of Am I good to go? and enter the following text.

=IF(B11=B12,"YES","NO")

This means that if the number in cell B10 is equal to the number calculated from the checked boxes in B11, YES will be automatically entered in the cell. Otherwise, NO will be entered.

Screenshot of the

Apply Conditional Formatting

You can also color code the cell based on whether the values in cells B10 and B11 are equal or not. This is called Conditional Formatting.

Let's see how to turn the cell red if not all the checkboxes are checked and green if they are. See our article about Conditional Formatting for information on how to create rules.

Select the cell next to "Am I good to go?". It's B14 in this example spreadsheet.

Create a rule for this cell with the Conditional Formatting Rules Manager dialog box using the Use a formula to determine which cells to format rule type.

Enter the following text in the Format values where this formula is true box.

Replace B11 and B12 with the cell references for your Total Items and Items Packed (or whatever you named these cells) values, if they're not the same cells. (See our guide to the Excel name box if you need more info on that.)

=$B11<>$B12

Then, click Format and select a red Fill color and click OK.

Screenshot that shows conditional formatting of cells

Create another new rule of the same type, but enter the following text in the Format values where this formula is true box. Again, replace the cell references to match your own checklist.

=$B11=$B12

Then, click Format and select a green Fill color and click OK.

Screenshot of Formatting Rule in Excel

On the Conditional Formatting Rules Manager dialog box, enter an absolute reference for the cell you want to color green or red in the Applies to box.

Enter the same cell reference for both rules. In our example, we entered =$B$13.

Click OK.

The Am I good to go? cell in the B column now turns green and read YES when all the checkboxes are checked. If you uncheck any item, it will turn red and read NO.

Excel Checklist Complete? Check!

You can create a checklist in Excel easily enough. But it just one type of list. You can also make dropdown lists in Excel with your custom items.

Now, do you also have information that you use often, like department names and people's names? Try this method to create custom lists in Excel for recurring data that you always need.