user4884171
user4884171

Reputation: 11

What function to use in excel if I would like to sum the cells in which the rows contains the word "confirmed"

I would like to ask if I have cell (A1 to A10) in numbers and the rest of the rows in text that contains

"confirmed",
"confirmed-ALS",
"confirmed-lead".

How do I sum up the cells (A1 to A10) for those cells that contain the text confirmed.

I have this - =IF((C6:Q6)="*Confirmed*", SUM(C3:Q3), ""), but it seems wrong.. hope someone can help..

Thank you!!

Upvotes: 1

Views: 65

Answers (1)

brettdj
brettdj

Reputation: 55692

from your question i think you want

=SUMIF(C6:Q6,"confirmed*",C3:Q3)

Upvotes: 2

Related Questions