problem setting formula

G

Guest

end result

formula that will provide monthly dollars sold for a sales rep for a certain
product
excel worksheet has columns for month, actual date, $sold, rep name, product
name
 
G

Guest

where your source data is
D1:D100 = sales dates
E1:E100 = rep names
F1:F100 = product name
G1:G100 = sales dollars

your criteria is
A1 = month (integer)
B1 = rep name
C1 = product name

=SUMPRODUCT(--(MONTH(D1:D100) = A1), --(E1:E100=B1), --(F1:F100=C1), G1:G100)

change ranges as needed. sumproduct cannot accomodate an entire column (but
D1:D65535 is fine)
 

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

Finding a count above average 1
vlookup? 5
Sum numbers based on specified criteria 5
Formula Help needed 2
List array results as text 2
Subtotalling 1
Choice of Formula 4
Adding from several columns if ... 1

Top