SOLVED

Using a row value criteria in an averageifs function

Copper Contributor

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 am trying to make use of averageif(s) function, but can not figure out how to make use of the row() function nested within. Really appreciate the help!

6 Replies

@nickaho 

My recommendation for you to get an answer is to provide sample data in an Excel file.

@nickaho 

 

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

 

best response confirmed by nickaho (Copper Contributor)
Solution

@nickaho 

It would be best if you store your variables in Cells. For example, if the values are in Column A, the Start Row is stored in C2, End Row in C3, and Percent in C4, then the formula to return your desired result would be: 

=AVERAGEIF(INDEX(A:A,C2):INDEX(A:A,C3),

">="&C4)

@Sergei Baklan Thank you! This is perfect

@Twifoo Awesome, thank you so much!

Your gratitude delights me!
1 best response

Accepted Solutions
best response confirmed by nickaho (Copper Contributor)
Solution

@nickaho 

It would be best if you store your variables in Cells. For example, if the values are in Column A, the Start Row is stored in C2, End Row in C3, and Percent in C4, then the formula to return your desired result would be: 

=AVERAGEIF(INDEX(A:A,C2):INDEX(A:A,C3),

">="&C4)

View solution in original post