Skip to main content

Kutools for Office — One Suite. Five Tools. Get More Done.

How to change a specified cell value or color when checkbox is checked in Excel?

Author Siluvia Last modified

This article is talking about changing the value or color of a specified cell by a checkbox. For example, when a certain checkbox is checked, the value or background color of a specified cell will be changed automatically. Please follow the below methods step by step to deal with it.

Change a specified cell value when checkbox is checked with formula
Change a specified cell value when checkbox is checked with VBA code
Change a specified cell color when checkbox is checked with VBA code


Change a specified cell value when checkbox is checked with formula

Supposing you need cell A1 to be populated with value “test” when the check box 1 is checked. And blank the cell when unchecking the check box. Please do as follows.

You need to link the checkbox to a certain cell firstly, and then apply formula to achieve it.

1. To link the checkbox to a certain cell, please select it, then enter= cell reference into the Formula Bar and press the Enter key. Here I link the checkbox 1 to cell C2 with entering =C2 into the Formula Bar after selecting the checkbox.

enter a formula into the Formula Bar after selecting the checkbox

For ActiveX Control check box, please right click it and select Properties from the right-clicking menu. And in the Properties dialog box, enter the linked cell into the LinkedCell field, and then close the dialog box. See screenshot:

select Properties and set options

2. Select the cell you need to change its value (here I select A1), then enter formula =IF(C2,"Test","") into the Formula Bar, and press the Enter key. See screenshot:

Select the cell to change its value and enter a formula

Note: In the formula, C2 is the linked cell of the check box 1, “Test” is the value you need to display in cell A1 when the check box is checked.

You can see the results as below screenshots shown after checking or unchecking the corresponding check box.

the value is changed based on the checkbox is checked or unchecked

a screenshot of kutools for excel ai

Unlock Excel Magic with Kutools AI

  • Smart Execution: Perform cell operations, analyze data, and create charts—all driven by simple commands.
  • Custom Formulas: Generate tailored formulas to streamline your workflows.
  • VBA Coding: Write and implement VBA code effortlessly.
  • Formula Interpretation: Understand complex formulas with ease.
  • Text Translation: Break language barriers within your spreadsheets.
Enhance your Excel capabilities with AI-powered tools. Download Now and experience efficiency like never before!

Change a specified cell value when checkbox is checked with VBA code

You can also change a specified cell value when checkbox is checked with VBA code. Please do as follows.

1. Right click the Sheet Tab with the cell value you need to change based on checkbox, then click View Code from the right-clicking menu.

2. In the Microsoft Visual Basic for Applications window, please copy and paste the below VBA code into the Code window.

VBA code: Change a specified cell value when checkbox is checked

Private Sub CheckBox1_Click()
Dim xRng As Range
Dim xCell As Range, xStr As String
Set xRng = Selection
If CheckBox1.Value = True Then
    xStr = InputBox("Please enter a value:", "Kutools for Excel")
    xRng.Value = xStr
    If xStr = "" Then CheckBox1.Value = False
Else
    xRng.Value = ""
End If
End Sub

click View Code and insert the code into the sheet module

Note: In the code, ChekBox1 is the name of the Check Box (ActiveX Controls). You can change it as you need.

3. Press the Alt + Q keys simultaneously to close the Microsoft Visual Basic for Applications window.

4. Select a blank cell (A1) you want to change its value based on the checkbox, and check the checkbox1 in your worksheet. Now a Kutools for Excel dialog box pops up, please enter the value you want to be populated in the selected blank cell, and then click the OK button. See screenshot:

enter the value you want to be populated in the selected blank cell

Then the specified value is displayed into the selected cell immediately. And when unchecking the checkbox, the cell will be blank.

the specified value is displayed if check the checkbox, otherwise, blank shown

Note: This code will remind you enter the text value circularly when you check the check box each time.


Change a specified cell color when checkbox is checked with VBA code

This section will show you how to change a specified cell color when checkbox is checked with VBA code.

1. Right click the Sheet Tab with the cell color you need to change based on checkbox, then click View Code from the right-clicking menu.

2. In the Microsoft Visual Basic for Applications window, please copy and paste the below VBA code into the Code window.

VBA code: Change a specified cell color when checkbox is checked

Sub CheckBox1_Click()
Dim xRng As Range
Set xRng = Selection
If CheckBox1.Value = True Then
    xRng.Interior.Color = vbRed
Else
    xRng.Interior.Color = xlNone
End If
End Sub

click View Code and inser the code into the sheet module

Note: In the code, ChekBox1 is the name of the Check Box (ActiveX Controls). You can change it as you need.

3. Select a cell you need to change its background color, then check the checkbox. You can see the fill color of the selected cell is changed to red. And the selected cell will be filled with no background color after unchecking the checkbox. See screenshots:

fill color of the selected cell is change if check the chekbox, otherwise, no fill color


Related articles:

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more
Use Kutools in your preferred language – supports English, Spanish, German, French, Chinese, and 40+ others!

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!

All Kutools add-ins. One installer

Kutools for Office suite bundles add-ins for Excel, Word, Outlook & PowerPoint plus Office Tab Pro, which is ideal for teams working across Office apps.

Excel Word Outlook Tabs PowerPoint
  • All-in-one suite — Excel, Word, Outlook & PowerPoint add-ins + Office Tab Pro
  • One installer, one license — set up in minutes (MSI-ready)
  • Works better together — streamlined productivity across Office apps
  • 30-day full-featured trial — no registration, no credit card
  • Best value — save vs buying individual add-in