Skip to main content

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

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.

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:

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:

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.


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

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:

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

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

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:


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

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...

Description


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!
Comments (0)
No ratings yet. Be the first to rate!
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations