Reputation: 21
=SUMIFS('Test 2021'!M3:M200,'Test 2021'!H3:H200,"Cualitativo",'Test 2021'!K3:K200,"Gestores")
Upvotes: 0
Views: 37
Reputation: 27242
Your locale may require the use of semi-colons instead of comma's. So see if this works:
=SUMIFS('Test 2021'!M3:M200;'Test 2021'!H3:H200;"Cualitativo";'Test 2021'!K3:K200,"Gestores")
or
=SUMPRODUCT('Test 2021'!H3:H200="Cualitativo";'Test 2021'!K3:K200="Gestores"; 'Test 2021'!M3:M200)
Upvotes: 0
Reputation: 1
try:
=INDEX(SUMIFS('Test 2021'!M3:M200*1; 'Test 2021'!H3:H200, "Cualitativo";
'Test 2021'!K3:K200; "Gestores")
Upvotes: 1