知道为什么这个公式会通过 google 工作表上的错误吗?

Any idea why this formula would through an error on google sheets?

=SUMIFS('Test 2021'!M3:M200,'Test 2021'!H3:H200,"Cualitativo",'Test 2021'!K3:K200,"Gestores" )

尝试:

=INDEX(SUMIFS('Test 2021'!M3:M200*1; 'Test 2021'!H3:H200, "Cualitativo"; 
                                     'Test 2021'!K3:K200; "Gestores")

您的语言环境可能需要使用分号而不是逗号。所以看看这是否有效:

=SUMIFS('Test 2021'!M3:M200;'Test 2021'!H3:H200;"Cualitativo";'Test 2021'!K3:K200,"Gestores")

=SUMPRODUCT('Test 2021'!H3:H200="Cualitativo";'Test 2021'!K3:K200="Gestores"; 'Test 2021'!M3:M200)