Sign in to join the conversation:
Hello,
I have a sheet that I am saying if a score is over 80 to check the box. The formula itself seems to be working as it is returning the 1 however I want it to check the box not show me the value.
Any ideas what I'm missing here?
usually you should post the formula you are testing so we know what you did and don't have to guess.
=if([column2]@row > 80,1,0)
also
=if([column2]@row > 80, true,false)
should work.
If it is showing a value my guess is you used the first formula I posted but put the 1 in parenthesis as seen below
=if([column2]@row > 80, "1","0")
which will post the 1 as a text value instead of a numeric value and post the text instead of checking the box.
L@123 perfect thank you! That's exactly what I was doing wrong! Fixed!!
Hi there, I've created a sheet to where my team is tracking information received. In one column, we are logging the date and time information came in (ie: November 21, 2025 8:30 AM). I would like to add a checkbox column, with a formula specifying that the box be checked if the logged time is AFTER 8:30 AM, and left…
I have a column named Territory, where I am trying to write a formula to populate it when names are chosen from an adjacent drop-down list column called Employee Attendee. If more than one name is selected from the Employee column, I would like their respective territories to populate in the Territory field, separated by a…
I have a list of properties that I'm keeping track of. I have each building divided into suites (children) and each suite has a cell with its square footage. The total square footage rolls up to the building name. I also have a drop down column that shows if the suite is occupied or vacant. I need a to calculate the…