Syntax for "Not Blank"

K

KKD

I am trying to write a formula that only sums the values from the amount
column if there is a date in the date column...what is the syntax for this?
My formula is a SUMIF:

=sumif(N:N,>0,(H:H))

Excel does not accept the >0, how should this be written to say "when this
cell is not blank"?
 
J

Jarek Kujawa

try:

=sumif(N:N,">0")
for >0

or

=sumif(N:N,"<>""")
for not blanks

pls click YES if this helped
 
J

Jarek Kujawa

try:

=sumif(N:N,">0")
for >0

or

=sumif(N:N,"<>""")
for not blanks

pls click YES if this helped
 
D

Dave Peterson

=SUMIF(N:N,"<>",H:H)
I am trying to write a formula that only sums the values from the amount
column if there is a date in the date column...what is the syntax for this?
My formula is a SUMIF:

=sumif(N:N,>0,(H:H))

Excel does not accept the >0, how should this be written to say "when this
cell is not blank"?
 
D

Dave Peterson

=SUMIF(N:N,"<>",H:H)
I am trying to write a formula that only sums the values from the amount
column if there is a date in the date column...what is the syntax for this?
My formula is a SUMIF:

=sumif(N:N,>0,(H:H))

Excel does not accept the >0, how should this be written to say "when this
cell is not blank"?
 

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

Similar Threads

Excel Sumproduct 0
Sumif formula 4
need help with formula 5
SUMIF Criteria 5
Blank Suppression 3
Excel Need aid in Excel Formulas 3
Automatically Enter Formula in a Cell After Entering Data in Another Cell 0
SUMIF Function 1

Top