简体   繁体   中英

Highest Sum Array List

I have a list of values and names and I would like a single cell formula to return only the greatest summed value in the list. I actually got this to work in Microsoft excel with:

  =MAX(SUMIFS($A:$A,$B:$B,$B:$B,$B:$B,"<>"))

but now I'm required to put it into Google-Sheets and it's giving me issues,

=ARRAYFORMULA(MAX(SUMIFS(F:F,G:G,G:G,G:G,"<>")))

This sort of works, but it only counts the same value as the row the formula is on. I'm not as familiar with sheets as I am excel, what am I doing wrong?

您可以尝试使用SUMIF

=Max(ArrayFormula(SumIf(G:G,G:G,F:F)))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM