Pergunta

I have a spreadsheet where I need to get a count of how many records have a specific three values in three different columns. This is what I have so far, but it returns 0 results, which isn't correct.

=SUM(($K:$K="Computers")*($Q:$Q=1)*($J:$J="Microsoft Windows XP Professional SP3"))

I need to know how many records are a computer, with the value 1, running XP.

I am aware I haven't explained this well so please ask for clarification if needed. Thank you!

Foi útil?

Solução

Try:

=SUMPRODUCT(($K:$K="Computers")*($Q:$Q=1)*($J:$J="Microsoft Windows XP Professional SP3"))

Outras dicas

=COUNTIFS($K:$K,"Computers",$Q:$Q,1,$J:$J,"Microsoft Windows XP Professional SP3")

Your formula is working fine if you press CTRL + SHIFT + ENTER.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top