If Statement

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

Guest

I need a formula for the following: If (m2:m86>0, sum J2:j86). I have a 1
or the cell is blank in column M and column J is numbers greater than 1.
 
One way:

=SUMIF(M2:M86,">0",J2:J86)

or, since M is 1 or blank:

=SUMIF(M2:M86,1,J2:J86)
 
Hi Heater,

You could put this Formula in Cell "N1" for Example :-
=IF(SUM(M2:M86>0),SUM(J2:J86),0)

All the Best.
Paul
 

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