Sum for last 90 days

J

jsollows

I have a spreadsheet with column H = date and column J is a numerical
value. I am looking for a way to sum all entries in the last 90 days.

I've been using this formula that counts months but I want to go by
days to get a more accurage total.

=SUMIF(H:H,">"&DATE(YEAR(TODAY()),MONTH(TODAY())-3,DAY(TODAY())),J:J)

Can anyone help me with this?

Jim
 
G

Guest

Hi Jim,

I think that the condition can be expressed as

=SUMIF(H:H,">"&TODAY()-90,J:J)

Anthony
 

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

Top