HomeGoogle DocsSpreadsheetCheck-Uncheck a Tick Box based on Value of Another Cell in Google...

Check-Uncheck a Tick Box based on Value of Another Cell in Google Sheets

Published on

The interactive tick boxes/checkboxes are part of Google Sheets. Here is an interesting topic regarding checkboxes, i.e., how to check-uncheck a Tick Box based on the value of another cell in Google Sheets. I am going to talk about dependent tick boxes.

I have a checkbox in one cell or a range of cells. Can I get this/these checkboxes dynamically checked/unchecked? I mean toggle the checkbox automatically when a value in another cell changes?

Yes! It’s possible. First, see how the tick boxes got automatically toggled when I change the values in other cells.

Auto Toggling of Checkboxes in Google Sheets

In this live screenshot as you can see, when I type “paid” in column B the corresponding checkboxes in column A get checked automatically. Because the checkboxes contain formulas instead of the Boolean TRUE/FALSE.

auto toggling of check boxes in Google Sheets

This is very simple to do. Let’s go to that cool tip.

How to Check-Uncheck a Tick Box based on Value of Another Cell

First, insert a few tick boxes. Here I am inserting the tick boxes in the range  A2:A10.

Steps:

1. Select the cell A2:A10 and from the menu Insert, insert the tick boxes.

So you have a bunch of unchecked tickboxes in the range A2:A10. The default values now in these cells are FALSE (the value of unchecked checkbox). I am assigning formulas to these checkboxes.

Now see how to dynamically check/uncheck a tick box in Google Sheets.

Here what I am doing is controlling the checkbox toggling from a different column. Here I am using Column B for this purpose.

2. In cell A2, yes I mean cell A2 which already contain a tick box, double click and enter this formula.

=if(B2="Paid",TRUE,FALSE)

Then drag this formula down (copy down) that up to the cell A10. You can’t use an ArrayFormula here.

3. Now type “Paid” in B2 or any cell in the range B2:B10. You can see that the checkbox automatically got toggled.

You can use this dynamic behavior of tick boxes in some real-life examples. For example, toggle tick boxes automatically when you input amount in a payment receipt column.

So the checkbox got checked when you receive payments. If the checkbox is in cell A2 and the value (amount) is in B2, enter this formula in A2.

=if(AND(B2>0,ISBLANK(B2)=FALSE),TRUE,FALSE)

Here is one more cool tip in line with the above checkbox tip. This time I am using a drop-down to uncheck or check all checkboxes in Google Sheets dynamically. First, see it in action.

Dynamically Check/Uncheck Checkboxes in Google Sheets Based on Drop-down Value

In cell B2 I have set a drop-down menu. If you select “Paid” all the tick boxes in the range A2:A got checked. The selection of “Unpaid” make the checkboxes, unchecked.

check - uncheck all tick boxes via drop-down

I guess you already know how to set a drop-down as above using data validation in Google Doc sheets.

Data validation is a Data menu option. If you are not familiar, refer to this setting.

data validation rule for dynamic tick box

Now you can use the earlier formula in cell B2. But this time make the cell reference absolute. See the modified formula below.

=if($B$2="Paid",TRUE,FALSE)

Drag this formula down that up to the cell A10.

That’s all about how to check-uncheck a tick box based on the value of another cell in Google Sheets.

Hope you have liked this tutorial on dynamically check checkboxes in Google Sheets. Thanks for the stay. Enjoy!

More Resources:

  1. 10 Best Tick Box Tips and Tricks in Google Sheets.
  2. Change the Tick Box Color While Toggling in Google Sheets.
  3. Assign Values to Tick Box and Total It in Google Sheets.
Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Appointment Schedule Template in Google Sheets

An appointment schedule template in Google Sheets can assist you in efficiently managing your...

Creating Sequential Dates in Equally Merged Cells in Google Sheets

Do you know how to create sequential dates in equally merged cells across a...

Running Total By Month in Excel

This tutorial demonstrates how to calculate the running total by month in a range...

SORT and SORTBY – Excel Vs Google Sheets

While Excel offers the SORT and SORTBY functions for sorting a table, Google Sheets...

More like this

Appointment Schedule Template in Google Sheets

An appointment schedule template in Google Sheets can assist you in efficiently managing your...

Creating Sequential Dates in Equally Merged Cells in Google Sheets

Do you know how to create sequential dates in equally merged cells across a...

Interactive Random Task Assigner in Google Sheets

You have multiple tasks and multiple people. Here's a fun way to randomly assign...

31 COMMENTS

  1. I need a checkbox to auto-check when any cells in a range contain the word “Get”.

    Is this doable?

    I need the C32 checkbox to check if any cell in A3:A14 contains the word “get” in them.

  2. Hi,

    This may not be able to be done, but I am hopeful it is.

    I want to create a competency form for my trainers to fill out every time a trainee completes a competency, and it will then import the data from the form to a sheet inside the workbook.

    From there, I want a check box that will search through the names of the form responses and tick a checkbox on an overview sheet corresponding with the name, and the competency completed.

    I would like them to automatically update the checkboxes, whether every time a response is submitted or whenever I don’t mind.

    I hope this makes sense. I can try to attach photos of each sheet to make it a little easier to understand if this doesn’t make sense.

  3. This is all really helpful.

    Essentially, I want to ensure that only one of the three tick boxes is able to be ticked at a given time.

    I’m still trying to figure out my footing when it comes to formulas, so grace is appreciated!

    • Hi, Lizzy,

      It doesn’t seem possible since the formula applied cell becomes unclickable.

      The workaround is to limit entering values in those cells, e.g., if C2, D2, and E2 are the cells, you can use the following formula in Data Validation > Criteria > Custom Formula field.

      =COUNTA($C$2:$E$2)<2

      Check "Reject input," and the cell range must be C2:E2.

      It will make users enter a value (e.g., a ✔ symbol) in only one of the cells in C2:E2.

  4. I have a checkbox in column Z. I have a date (birthdate) in the H column.

    How can I have the checkbox check automatically when the age of the person is below the age of 16?

    I can add a column that calculates the date (we’ll say column AA).

    • Hi, DeeMarie,

      I assume the data is as follows.

      DOB in H2:H
      Tick boxes in Z2:Z.

      Then in Z2, insert the following Datediff formula and copy it down.

      =datedif(H2,today(),"Y")<16

  5. Thank you for this.

    I’m wondering though, is it possible to have a checkbox be ticked if one or more checkboxes on other sheets get ticked?

    For example, if I have three people out of six with their own sheets that check a box, can a box on another sheet get ticked?

    • Hi, Ela,

      Are you referring to six workbooks (Sheets) or that many tabs within a single workbook?

      In both cases, we might be able to do that. Please elaborate and feel free to share a sample of your Sheet below.

        • Hi, Ela,

          Yep! It seems possible.

          Example:

          Master Sheet:

          Sheet1 is the master sheet that contains the following data.
          A2:A – the candidates’ names
          B1, C1, and D1 – tab names Joe, Jan, and Sharon (interviewers).

          Other Sheets:

          Joe (tab name)
          Jan (tab name)
          Sharon (tab name)

          These three sheets contain the following data.
          A1:A – the candidates’ names
          F1:F – tick boxes (interview result column)

          In Sheet1!B2, i.e., master sheet, insert the following formula and copy it to C2 and D2.
          =ArrayFormula(ifna(vlookup($A$2:$A,indirect("'"&B1&"'!A1:F"),6,0)))
          Select B2:D and apply Insert >Tick box.

  6. Thank you for these tutorials.

    So is it true that it is not possible to make an “Uncheck All” box (or drop-down selection) while allowing the other boxes to be interactive?

    • Hi, Josh,

      For that, you can get the help of Macros.

      Steps:

      1. Go to Extensions > Macros > Record Macro.
      2. On the dialog box that appears, check/enable “Use absolute references.”
      3. Select the tick boxes on the sheet.
      4. Tap the Space bar twice.
      5. Save the Macro.

  7. I’m having an issue with the formula when I replace the word “Paid” with a value in another cell (i.e., “24”). Is there a way to correct this?

  8. Hi,

    How can I make the tick boxes in column A to be checked automatically if the adjacent cell from row B is checked?

    For example: If I check B5, then A5 to be checked automatically as well.

    Thank you.

    • Hi, Alex,

      Insert tick box in cells A5 and B5. Then in A5 type the following formula and hit enter.

      =B5=TRUE

      That’s it!

      When you check B5, A5 will be checked automatically. But the problem is A5 won’t be interactive anymore!

  9. I must be missing something. If I type a formula into a cell with a checkbox then the checkbox goes away. How do you get it to stay as a checkbox?

  10. How could you code this into a script so that when cell C contains the text “Approved” the checkbox in cell D is checked? I enjoy reading your clear descriptions and find them very useful!

    • Hi, SmilinJack,

      Empty D1:D. Then insert the below formula (array formula) in D1.

      =ArrayFormula(if(len(C1:C),if(C1:C="checked",TRUE,FALSE),))

      Select the values in D1:D, click on Insert > Tick box.

  11. Is it possible to automatically check a tick box if all other tick boxes in a specific range are checked? For example, I want the tick box at A4 to be checked if the tick boxes from A5 to A11 are all checked.

  12. Thanks for this Prashanth – this was super helpful! However, I need to go one step further with my formula if possible…

    Using your example of:

    =if(B2="Paid",1,0)

    I’ve modified this to take in to account a couple of other factors in my data set. Namely:
    – Another worksheet in the same workbook happens to be a ‘form responses’ sheet.
    – Full column instead of just one other cell.
    – Boolean search modifier * to return a root word/stem/truncation value.

    This is the formula I’ve entered in:

    =if('OTHERSHEET'!B:B="*DSC*",1,0)

    When I enter this, it seems to break the formula so it doesn’t work. Although there is no error message, it always generates a FALSE or 0 value in the checkbox cell even when the criteria should read as TRUE / 0 based on the targetted cell.

    Do you have any advice on whether this is possible and if so, how I can modify my formula?

    Thank you!
    H

    • Hi, Helena M,

      As far as I know, it’s not possible. Your formula is not correctly coded. Even if it’s correct, the formula would return #REF! error as it won’t overwrite the tickboxes.

      Please note the below two points that would help you advance in Google Sheets.

      To use a full column instead of just one other cell, you must enter your formula as an Array Formula. Either wrap your IF formula with the ARRAYFORMULA() function or hit Ctrl+Shift+Enter.

      To return a root word/stem/truncation value in IF, do not use the * wildcard character. The said function doesn’t support it. Then?

      Please follow this – Partial Match in IF Function in Google Sheets As Wildcard Alternative.

  13. Thank you for this, but I do have some question for the =if(B2="Paid", TRUE, FALSE) formula

    What if I have a drop-down option with “venmo”, “cash”, “paypall”, “other” and want the box to be checked if any option is selected remains unchecked if no value is selected?

    I’m having issues “grouping cells” on Google Sheets, and Excel is not really an option for me.

    Please help!

  14. Thanks so much for the IF statement modification of the checkbox! It was exactly what I needed to make a list beautiful and matching some other checkboxes.

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.