Syntax for "Not Blank"

  • Thread starter Thread starter KKD
  • Start date Start date
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"?
 
try:

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

or

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

pls click YES if this helped
 
try:

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

or

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

pls click YES if this helped
 
=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"?
 
=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
Filtering with SUMIFS 1
Sumif formula 4
Blank Suppression 3
loop help 6
need help with formula 5
Excel formula, sum the value cell and if empty cell left blank 0
Using AND and SUMIF function together 5

Back
Top