formula to calculate a column based on dates in a different colum.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have dates in column A and numbers in column B-J. I need columns B-J to
add up if dates in A are within a range. For example: if A is between
9/21/2004 and 9/20/2005, then add those lines in column B.
 
One way:

=SUM(IF((A1:A100>=M1)*(A1:A100<=N1),B1:J100))

Array-entered, meaning press ctrl + shift + enter, where
M1 holds the start date and N1 holds the end date.

HTH
Jason
Atlanta, GA
 

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


Back
Top