problem setting formula

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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

Ranking Sales Reps 2
Sum numbers based on specified criteria 5
vlookup? 5
Finding a count above average 1
Sum with conditions 1
Adding from several columns if ... 1
Choice of Formula 4
List array results as text 2

Back
Top