Search for a specific text in a spreadsheet and sum up all these cells -
i have spreadsheet looks like:
------------------ | | b | c | d | ------------------ | 1 | 5 |bla |bla1| ------------------ | 2 |10 |bla2|bla2| ------------------ | 3 |10 |bla2|bla1| ------------------ | 4 | 5 |bla |bla2| ------------------
i want sum cells in column b
string bla2
in column d
, in d
, not in c
. (so sum should 15
.)
how in google spreadsheets?
=sumif(d:d,"bla2",b:b)
should work (same excel).
Comments
Post a Comment