Make Check Boxes in Microsoft Word Clickable: A Step-by-Step Guide
In Microsoft Word, you can create clickable checkboxes to enhance user interaction with your documents. This is particularly useful when creating forms, surveys, or quizzes. Here's a step-by-step guide to help you make checkboxes clickable in Word.
Understanding Clickable Checkboxes in Word
Before we dive into the process, it's essential to understand that Word doesn't natively support clickable checkboxes like web pages. However, you can simulate this functionality using a combination of features. The result won't be fully interactive like a website, but it will provide a similar experience for users.
Preparing Your Document
Before you start, ensure your Word document is set up correctly:

- Use the latest version of Word for the best results.
- Set your document's compatibility mode to Word 2010 or later.
- Ensure your document is saved in the .docx format.
Creating a Clickable Checkbox
Now, let's create a clickable checkbox:
Step 1: Insert a Check Box
First, insert a regular checkbox into your document:
- Go to the 'Developer' tab (if it's not visible, go to 'File' > 'Options' > 'Customize Ribbon' and check 'Developer').
- In the 'Controls' group, click on 'Legacy Tools' and then 'Check Box Content Control'.
Step 2: Add Formatting
Next, format the checkbox to look like a traditional checkbox:

- Right-click on the checkbox and select 'Format Control'.
- In the 'Format Control' dialog box, under 'Control Properties', select 'Check Box'.
- Click 'OK'.
Step 3: Make the Checkbox Clickable
Now, let's make the checkbox clickable:
- Right-click on the checkbox again and select 'Assign Macro'.
- In the 'Assign Macro' dialog box, click 'New'.
- Give your macro a name (e.g., 'ToggleCheckBox'), and then click 'OK'.
- In the 'Module' window, delete any existing code and replace it with the following:
Sub ToggleCheckBox()
With ActiveDocument.ContentControls(1)
.Range.Font.Color = .Range.Font.Color = RGB(0, 0, 0)
.Range.Font.Strikethrough = Not .Range.Font.Strikethrough
End With
End Sub
This code will toggle the strikethrough formatting of the text inside the checkbox, simulating a clickable checkbox.

Testing Your Clickable Checkbox
To test your clickable checkbox, simply click on it. The text inside should toggle between normal and strikethrough formatting. If it works, congratulations! You've successfully created a clickable checkbox in Word.
Managing Multiple Checkboxes
If you have multiple checkboxes, you can modify the macro to manage them all. For example, you can add code to toggle the strikethrough formatting of all checkboxes when one is clicked. This can be useful for creating simple forms or quizzes.
Conclusion
Making checkboxes clickable in Word can enhance user interaction with your documents. While it's not as straightforward as in web development, with a bit of creativity and the right techniques, you can achieve a similar effect. Happy document creation!
![How to create Checklist in Word with clickable checkbox [2021]](https://i.pinimg.com/originals/4c/e4/06/4ce406fd989255a92d3b524ade84c9a0.jpg)





















