Forum Discussion
nickaho
Jul 31, 2019Copper Contributor
Using a row value criteria in an averageifs function
Hi, I am trying to create a formula that takes in a range of cells and averages the cells in that range that have a value >=0% and row number >= a number stored in another cell. Is this possible? I a...
SergeiBaklan
Aug 01, 2019Diamond Contributor
If your data is in column A and row number to start is in C1, when like
=AVERAGEIF(INDEX(A:A,$C$1):A1000,">=0")
assuming you are within 1000 rows range
nickaho
Aug 05, 2019Copper Contributor
SergeiBaklan Thank you! This is perfect