+ Reply to Thread
Results 1 to 3 of 3

Frequencies using sumproduct function

  1. #1
    Registered User
    Join Date
    05-28-2007
    Posts
    3

    Frequencies using sumproduct function

    Hi,

    I have 2 columns:

    Cro 87
    Cro 24
    Cro 89
    Cro 7

    I need to calculate the frequency of certain criteria such as the number of instances of Cro >84. To do this I have used

    { =SUMPRODUCT(($BD20021:$BD20028="Cro")*($BE20021:$BE20028>84))}

    However I also need to find other frequencies such as Cro between 21 and 84any ideas.

    Thanks

    Gary

  2. #2
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591
    Gary

    try

    =SUMPRODUCT(($BD20021:$BD20028="Cro")*($BE20021:$B E20028>=21)*($BE20021:$B E20028<=84))


    rylo

  3. #3
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Try

    =SUMPRODUCT(--(A1:A4="Cro")*(B1:B4<=84)*(B1:B4>=21))+SUMPRODUCT(--(A1:A4="Cro")*(B1:B4>84))

    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1