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!!
I need to extract and split the contents of a cell in a Smartsheet into three separate columns to a new smartsheet. The cell entries are originally submitted through a form.
Hello, Just investigating an idea. I'm building a staff register sheet. I'm curious to know if its possible to populate specific cells by the answers given in a form? So if, in a form, a staff member gives their name, the date and that they will be on leave, sick, training ect. Once the form is submitted, it will populate…
My current formula is below. I would like to update this so that I only get a total of those that have been Quoted and have a timeframe data of 2025. How do I add this extra filter into the formula? =SUMIF(Status:Status, "Quoted", [Est. GP]:[Est. GP])