Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

formulas in excel that gather info from dates?

in sheet 1, there is a list of orders that shipped out. (multiple per day)it updates daily.

is there a way (in sheet 2) to sum up averages/counts into 1 line per date?

i am doing this manually, using the auto sum formula, but i have to maunually select the range field by dates.

sheet 1 already has the entire month's info. is there a way to automatically have excel sum up by date

Attachment image

2 Answers

Relevance
  • 6 years ago
    Favorite Answer

    Sure,

    i dig the circles and arrows :o)

    - Sheet2 B3 copy&paste this COUNTIF() formula

    =COUNTIF(orders!$F$1:$F$14,A3)

    - Sheet C3 you have your choice of the COUNTIFS() formula or a SUMPRODUCT() formula

    =SUMPRODUCT((orders!$F$1:$F$14=A3)* (orders!$U$1:$U$14))

    - and of course D3 gets this formula

    =C3/B3

    you can change all the 14 to 9999 to expand the range, just make sure you change all three of the 14s.

    you can select all 3 cells, then copy&paste down the columns on sheet 2.

    let me know how it works, or if you want the COUNTIFS()

    edit-

    oops, you dont need a COUNTIFS() at all, you can use a SUMIF()

    so you can use these formulas

    =COUNTIF(orders!F:F,A3)

    and

    =SUMIF(orders!F:F,A3, orders!U:U)

    you can also make a "pivot table" out of your data.

  • 6 years ago

    perfect!!!! thank you very much for that.

Still have questions? Get your answers by asking now.