SUMIF problem

  • Thread starter Thread starter wahur
  • Start date Start date
W

wahur

Column A has dates
Column S has numbers
I need to add numbers in rows where date is in past.
I tried
Code
-------------------
=SUMIF(A:A;"<today()";S:S
-------------------
and got 0 for an answer
I put
Code
 
Wahur,

Change your original to:

=SUMIF(A:A,"<"&TODAY(),S:S)

You had quotes around the TODAY function which caused your problem.

HTH

Steve
 

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

Total last 30 days 6
Sumif weekday 3
SUMIF problem 5
SUMIF with criteria "<>" & "=" 4
sumif formula 2
SUMIF with Multiple Criteria 4
Sumifs (I think) 5
Excel problem - sumif with multiple parameters 2

Back
Top