Sign in to join the conversation:
Is there a way to get an average of selected cells (all the Children of a column) only if they are not blank? I am stuck and trying to automate the functions as much as possible. Thanks a ton in advance!
Hi Teresa,
Try something like this.
=AVG(COLLECT(CHILDREN(Column@row); CHILDREN(Column@row); NOT(ISBLANK(@cell))))
The same version but with the below changes for your and others convenience.
=AVG(COLLECT(CHILDREN(Column@row), CHILDREN(Column@row), NOT(ISBLANK(@cell))))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
Hi, I created a formula that derives a value-based date range but if the date field is blank, I receive an INVALID DATE TYPE comment in that specific row. I read a few comments online that says if I apply the IFERROR operator, it will remove this error, but it returns “Incorrect Argument Set”. Here’s a sample of my…
If I am trying to create a metric formula to count how many rows were created today, created yesterday, created 3 days ago etc… by using the auto "Created Date" column. The current formula I am using is not properly adding them correctly =COUNTIFS({Ticket Tracker Range 1}, "COUNTING" , {Ticket Tracker Range 3}, =TODAY(-1))…
I am trying to do an Index Match where I have multiple lookup values in the same cell. I want it to grab all available App Names and return/concatenate them into the cell here. I have some App IDs with just one # where it works fine normally but others like the example above have multiple listed.