Trending in Formulas and Functions
-
Formula Issue
Hi all, I am trying to average the values in a column, 'Defective Quantity', when the value in column 'hide' is an '11' (for month) AND the data in column 'Year' is 2023. =AVERAGEIF([Defective Quantity]:[Defective Quantity], hide:hide, =11, year:year, =2023) I am receiving an #UNPARSEABLE error. Any idea what I'm doing…
-
Marrying three formulas together
I have three different formulas, containing various criteria, which I want to want to marry together and for which all things must be true: 1) project start date is less than 1/1/24; 2) go-live date is greater than 12/31/23 and 3) the project stage is "In progress" or "Waiting to start": =COUNTIF({HR Projects Project Start…
-
Automatic Parent by Child Status
Hi everyone, I'm working on a formula in my status column so that the parent line will automatically update based on what the child/children are. Here's the current formula I have that's not quite working: =IF(COUNTIFS(CHILDREN(), "Not Started") = COUNT(CHILDREN()), "Not Started", IF(COUNTIFS(CHILDREN(), "Achieved") =…