conditional if based on a word value...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi there,

I am fairly new to Excel. What I want to do is this:

I have a column named 'Program'. I have another column named 'Amount'.

If 'Program' = "Seed" then sum all entries in the 'Amount' column where
Program = "Seed". Can I do this in excel? If so, how?

Kind Regards,
 
=SUMIF(A2:A500,"Seed",B2:B500)

where cells A2:A500 contain the program names and cells B2:B500 contain the
amounts
 
If the "Program" column is Column A, and the "Amount" column is Column B,
then try this:

=SUMIF(A:A,"Seed",B:B)
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


Hi there,

I am fairly new to Excel. What I want to do is this:

I have a column named 'Program'. I have another column named 'Amount'.

If 'Program' = "Seed" then sum all entries in the 'Amount' column where
Program = "Seed". Can I do this in excel? If so, how?

Kind Regards,
 

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