sumif

K

Kelly

I have a spreadsheet with a list of invoice dates and the amounts due. At
the bottom, I have due dates a week apart
08/03/07
08/10/07
08/17/07
08/24/07
08/31/07
If the invoice date is equal to or less than 08/10/07 and greater than
08/03/07, I would like to include it in my SUMIF. Everything I have tried
(sumif and sumproduct) have produced $0 values.

Here is an example of the latest formula I've found here on the discussion
boards that I've tried to use.
=SUMPRODUCT((A4:A340>C344)*(A4:A340<=C345)*F4:F340)
Help, please.
kelly :)
 
P

Peo Sjoblom

The formula does work so there can be either of these 2, the dates are seen
as text by Excel
or the values in F4:F340 are text

Your formula can be rewritten as

=SUMPRODUCT(--(A4:A340>I1),--(A4:A340<=J1),F4:F340)

however I just tested your formula and it does what it should do

Test for text as follows

=ISTEXT(A4)


copy down if you get and TRUE those values are text, do the same for the F
column


--


Regards,


Peo Sjoblom
 
K

Kelly

thank you very very much!!

Peo Sjoblom said:
The formula does work so there can be either of these 2, the dates are seen
as text by Excel
or the values in F4:F340 are text

Your formula can be rewritten as

=SUMPRODUCT(--(A4:A340>I1),--(A4:A340<=J1),F4:F340)

however I just tested your formula and it does what it should do

Test for text as follows

=ISTEXT(A4)


copy down if you get and TRUE those values are text, do the same for the F
column


--


Regards,


Peo Sjoblom
 

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

Schedule Events 2
Find then highlight in yellow 6
count on 3 criteria 3
Calculate number of codes betwen dates 5
SUMIF nesting ??? 3
possible countif formula? 3
Count based on date criteria 1
Sumif withdates 2

Top