Connect with peers, share your expertise, and inspire what’s next in Smartsheet — from proven practices to practical how-to insights from fellow users and product experts.
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!!
I know you can use a formula like this: =[Projected Payment Milestones (+)]@row to copy the "value" from one cell to another (because that cell is a formula); however, I need just the "value" formatted as a number ($) to be copied; because in my REPORT I am not able to edit the data as it is recognized as a FORMULA (fx) Is…
I have one sheet that houses all updates and comments for specific Releases (Sheet 1). I have a second sheet that lists every Release being worked on (Sheet 2). I am trying to pull only the most recent update from the Sheet 1 into Sheet 2. I am able to pull over an update when only using one criterion (either the Release…
I need help, please! I created a process that allows employees to request deactivation periods from their snow assignment. The ogranization allows for 5 employees for days and 5 employees from nights to deactivate at one time, per day. I am using the following formula to retrieve the number of slots available:…