Conditional formula

  • Thread starter Thread starter Martha
  • Start date Start date
M

Martha

Is there a way to create a formula for a group of cells? I am wanting it to
give me the sum of all the cells in Column F that correspond to the same row
from Column A if Column A has a certain value in that row's cell. There is
over 200 rows of information in these columns. Any help would be greatly
appreciated!
 
if Column A has a certain value in that row's cell.

What is that value?

If it's a number like, say, 10:

=SUMIF(A1:A200,10,F1:F200)

If it's a text string like, say, Yes:

=SUMIF(A1:A200,"Yes",F1:F200)
 
Yes, that worked!! I must have tried every formula but that one. Thank you
so much!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top