PROVIDING ACCURATE, RELIABLE AND STRAIGHT TO THE POINT KNOWLEDGE ABOUT DIFFERENT IT TOOLS EXPLAINED WITH PRACTICAL EXAMPLES
A CHECKBOX is a visible element which returns a TRUE if checked and FALSE if the checkbox is unchecked.
Checkbox is very useful in many situations such as to manage a TO DO LIST, ATTENDANCE , A CHECKLIST or any situation where we have just two values like a BINARY SYSTEM.
But we have a directly usable option of CHECKBOX in the Google Sheets.
A CHECKBOX IS AN ELEMENT WHICH CAN BE USED IN THE SITUATIONS WHERE WE HAVE TWO CHOICES ONLY – INCLUSION AND EXCLUSION. BY DEFAULT, CHECKBOX RETURNS A TRUE IF CHECKED AND FALSE IF UNCHECKED.
In this we’ll learn the ways to insert and use a check box in GOOGLE SHEETS.
A checkbox can be used in the following situations :
The picture above shows a demonstration of the use of CHECKBOX in GOOGLE SHEETS.
It is just a representation but we can extract the analytical data from the table too. In the examples we’ll explore more possibilities from the checkboxes.
STEPS TO INSERT A CHECKBOX IN GOOGLE SHEETS :
This was the procedure to insert a checkbox in google sheets which was quite simple.
Let us now take an example to learn the use of Check box and its possibilities.
Now, as we have already inserted a Check box in google sheets, let us now learn to use check box.
As already discussed, CheckBox , by itself, represents a FALSE if it is unchecked and a TRUE if it is checked.
AN UNCHECKED CHECKBOX REPRESENTS A FALSE BY DEFAULT AND A CHECKED CHECKBOX REPRESENTS A TRUE.
We’ll take an example to learn the usage of a checkbox.
This was the procedure to insert a checkbox in google sheets which was quite simple.
Let us now take an example to learn the use of Check box and its possibilities.
A company has floated a contract and applications have been received.
There are 10 criteria in total and the applicants qualifying more than 50% criteria , will have their proposals accepted.
We have created a form containing the checklist of 10 criteria.
We’ll find out the total number of checked CHECK BOXES and compare if the number of checked boxes is more than 50% i.e. 5.
If the number of checked boxes is greater than 5, the proposal will be accepted otherwise rejected.
The following picture shows the scenario
FOLLOW THE STEPS TO CHECK IF THE PROPOSAL IS ACCEPTED OR REJECTED
Let us try to understand the formula used.
We used the formula as
=IF(COUNTIF(H10:H19,“TRUE”)>5,“ACCEPTED”,“REJECTED”)
The thereotical explanation of the formula is
IF , NUMBER OF COUNTS OF TRUE [i.e. checked CHECKBOXES ] is greater than 5 i.e. 6 or more , the formula will return ACCEPTED otherwise REJECTED.
IF function is the outermost function.
The first argument in the IF FUNCTION is another function which will return TRUE or FALSE based upon the result of COUNTIF function result.
COUNTIF FUNCTION has the first argument as H10:H19 which contains the range of the data. i.e. Check boxes.
The second argument of the COUNTIF function is the criteria, we entered TRUE in this which means , it’ll count the TRUE i.e. checked boxes only.
The result will be number of selected Checkboxes.
The second argument of the IF FUNCTION is ACCEPTED, which will be returned if number of selected CHECKBOXES is greater than 5 otherwise REJECTED will be returned.
In this article, we learnt about the way to INSERT CHECKBOXES in GOOGLE SHEETS and how to use a checkbox in google sheets.