Acho que você está procurando por essa função:
SUMIF
Adds the cells specified by a given criteria. This function is used to browse a range when you search for a certain value.
The search supports regular expressions. You can enter "all.*", for example to find the first location of "all" followed by any characters. If you want to search for a text that is also a regular expression, you must precede every character with a \ character. You can switch the automatic evaluation of regular expression on and off in Tools - Options - LibreOffice Calc - Calculate.
Syntax
SUMIF(Range; Criteria; SumRange)
Range is the range to which the criteria are to be applied.
Criteria is the cell in which the search criterion is shown, or the search criterion itself. If the criteria is written into the formula, it has to be surrounded by double quotes.
SumRange is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed.
SUMIF supports the reference concatenation operator (~) only in the Criteria parameter, and only if the optional SumRange parameter is not given.
- Na ajuda do Calc - página da web ou ajuda integrada F1 . Ele tem uma tonelada de informações úteis, tente a pesquisa e navegue um pouco.
Assim, por exemplo, uma entrada como esta:
=SUMIF(B1:B5,"A",A1:A5)
Examinaria as células B1 a B5, e se elas fossem iguais a A (usando "= A" também funciona, poderia fazer "> = A" etc), então a entrada correspondente em A1 a A5 será SUM-ed. p>
- A função SUMIF é comum para o LibreOffice, OpenOffice, MS Office ... o Página de ajuda do MS Office SUMIF parece boa, e aparentemente tem um vídeo de ajuda também.
- Veja também a página de ajuda do OpenOffice Contagem e resumo condicional .