Is there a function (not a google-app-script) that would allow me to sum all the rows of a sheet in which another column of that row has a given string?
For example
-----------------------
Name | Points
-----------------------
Joe | 10
Ana | 3
Joe | 6
Joe | 8
Ana | 5
I would like to call some function that gives the points of Joe and of Ana
SUM_IF_FUNCTION("Joe") = 24;
SUM_IF_FUNCTION("Ana") = 8;