I am new to Google spreadsheets and I have this little problem:
I need to sum the values ββfrom column K (project), for the specified person in cell B3, where the project is categorized as RF or RM in column C, I tried this, but returned the sum K as and not the conditions in which it applies ...
=arrayformula(if(AND('SheetX'!I$3:I=B3;OR('SheetX'!C$3:C="RF";'SheetX'!C$3:C="RM"));sum('SheetX'!K$3:K);0))
Besides
=arrayformula(Sum(if(AND('SheetX'!I$3:I=B3;OR('SheetX'!C$3:C="RF";'SheetX'!C$3:C="RM"));'SheetX'!K$3:K;0)))
Thanks to everyone who can help me with this simple problem.
source share