-
Ignore #Dividebyzero
Hi, I have a range of percentages and want to calculate the average. There are some #DIVIDEBYZERO cells within the range that will populate later on in the year. Is there a way to tell Smartsheet to ignore the #DIVEBYZERO? It is possible in Excel using an AverageIF formula. But I can't see how to do it in Smartsheet.
-
IFERROR and ISERROR do not work properly!
No matter if I use IFERROR or ISERROR formula Smartsheet always returns #BLOCKED Some how the back end ignores the IF/ISERROR formals and is returning #BLOCKED =IF(ISERROR([Project name]1293), " - ", "Green") result is not - but #BLOCKED =IFERROR([Project name]1293, " - ") result is not - but #BLOCKED
-
Add additional filter or how to do this
Hello, I need help to do something if possible. From my table, i want to make a filter which will show just the rows which has the specific terms. Ok, this is easy and I know how to do this. My issue comes when I have one more column where the fields containing numbers from 1-5. So, I want to somehow make additional filter…
-
#INVALID REF
Below formula works fine in some cells but in others it says invalid ref in the same column. What could be the issue? =IF([JC Number]11 = "", "", COUNTIFS({JC number}, [JC Number]11, {SCT}, "Yes", {Trucks Status}, OR({Truck Status} = "Road Freight - Moving Loaded", {Truck Status} = "Road Freight - Import Clearance", {Truck…
-
Sumif Unparseable if to many rows
So I have the following Sumif formula working and giving the proper result. =SUMIF([Business Unit]891:[Business Unit]900, [Business Unit]868, [Implemented FY18 (CUR)]891:[Implemented FY18 (CUR)]900) The problem is the range isn't big enough and if I extent the range to beyond 900 rows I get the Unparseable error message. I…
-
Formula to copy a value to cell which is defined by day of month
Hello! My goal is to create a sheet where I want to store the values which are updated every day during sync with Jira. And I want to copy a value to a cell that is corresponds to current day of week. The result should be something like on the screenshot. So I need some kind of formula: value from Jira copied every day to…
-
Formula
I am trying to use the below formula to have an average of answers but it is not working can anyone check the formula and let me know what is wrong =((COUNTIF(CHILDREN(), "Excellent") * 5) + ((COUNTIF(CHILDREN(), "Very Good") * 4) + (COUNTIF(CHILDREN(), "Good") * 3) + (COUNTIF(CHILDREN(), "Fair") * 2) +…
-
Pull a calendar
Hi-- so, I have a series of columns representing various tasks. And then I have a series of rows representing various projects. I enter various dates into the corresponding cells (eg Project X and Task Y will occur on such and such date). What I want to do then is on a separate sheet list all of the dates in the year and…
-
Formula(s) for calculating past due items on a construction punch list.
I'm creating a simple punch list template and would like to add some date calculating functions to it but I'm very unfamiliar with creating date formulas. I'm attaching a screen shot of this rough template with a sample line already entered. I would like to create a formula that will tell me how many days past due items…
-
COUNTIF or COUNTIFS
I think I have formulated myself into a corner. What I am attempting to do is create a total number of all open projects based on the multiple status options in 5 separate columns. So, if the data in columns Stats1:Stats5 match X or Y or X, return that total count. I am able to do this for One…