+ Reply to Thread
Results 1 to 8 of 8

SUMIF simplified

Hybrid View

  1. #1
    Gunjani
    Guest

    SUMIF simplified

    Currently I am using the following formulae

    =SUMIF($D$5:$D$156,"=EE",$U$5:$U$156)
    =SUMIF($D$5:$D$156,"=E",$U$5:$U$156)
    =SUMIF($D$5:$D$156,"=M",$U$5:$U$156)
    =SUMIF($D$5:$D$156,"=L",$U$5:$U$156)
    =SUMIF($D$5:$D$156,"=LL",$U$5:$U$156)

    Then SUM all the above to get the overall total. How can this be
    simplified to one formula.

    I have tried the folloing but with no joy

    =SUMIF($D$5:$D$156,"=EE,E,M,L,LL",$U$5:$U$156)
    =SUMIF($D$5:$D$156,"=EE","=E","=M","=L","=LL", $U$5:$U$156)
    =SUMIF($D$5:$D$156,OR(EE,E,M,L,LL),$U$5:$U$156)

    but none of the above work.

    any suggestions
    Thx
    Gunj


  2. #2
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699
    You can do it like this

    =SUM(SUMIF($D$5:$D$156,{"EE","E","M","L","LL"},$U$5:$U$156))

  3. #3
    Gunjani
    Guest

    Re: SUMIF simplified

    Thx, the same does not work for COUNTIF

    i.e COUNTIF(B5:B121,{"EE";"E";"M";"L";"LL"})
    This only returns a value the same as COUNTIF(B5:B121,"EE")

    Thx
    Gunj


  4. #4
    Peo Sjoblom
    Guest

    Re: SUMIF simplified

    You need to use sum as well, if you look at the formula you were given it is
    wrapped in SUM
    you need to do the same with countif

    =SUM(COUNTIF(B5:B121,{"EE";"E";"M";"L";"LL"}))

    --

    Regards,

    Peo Sjoblom

    Northwest Excel Solutions

    www.nwexcelsolutions.com

    (remove ^^ from email address)

    Portland, Oregon




    "Gunjani" <gunjani786@hotmail.com> wrote in message
    news:1142735692.514030.191340@v46g2000cwv.googlegroups.com...
    > Thx, the same does not work for COUNTIF
    >
    > i.e COUNTIF(B5:B121,{"EE";"E";"M";"L";"LL"})
    > This only returns a value the same as COUNTIF(B5:B121,"EE")
    >
    > Thx
    > Gunj
    >



  5. #5
    Forum Contributor
    Join Date
    09-25-2004
    Posts
    269
    Try this!

    =SUMPRODUCT(--(ISNUMBER(MATCH($D$5:$D$156,{"EE","E","M","L","LL"},0))),$U$5:$U$156)

    just hit enter.


    If you want to count then use this!

    =SUMPRODUCT(--(ISNUMBER(MATCH($D$5:$D$156,{"EE","E","M","L","LL"},0))))


    just hit enter.

  6. #6
    Dave Peterson
    Guest

    Re: SUMIF simplified

    Maybe...

    =SUM(SUMIF($D$5:$D$156,{"ee","e","m","ll"},$U$5:$U$156))



    Gunjani wrote:
    >
    > Currently I am using the following formulae
    >
    > =SUMIF($D$5:$D$156,"=EE",$U$5:$U$156)
    > =SUMIF($D$5:$D$156,"=E",$U$5:$U$156)
    > =SUMIF($D$5:$D$156,"=M",$U$5:$U$156)
    > =SUMIF($D$5:$D$156,"=L",$U$5:$U$156)
    > =SUMIF($D$5:$D$156,"=LL",$U$5:$U$156)
    >
    > Then SUM all the above to get the overall total. How can this be
    > simplified to one formula.
    >
    > I have tried the folloing but with no joy
    >
    > =SUMIF($D$5:$D$156,"=EE,E,M,L,LL",$U$5:$U$156)
    > =SUMIF($D$5:$D$156,"=EE","=E","=M","=L","=LL", $U$5:$U$156)
    > =SUMIF($D$5:$D$156,OR(EE,E,M,L,LL),$U$5:$U$156)
    >
    > but none of the above work.
    >
    > any suggestions
    > Thx
    > Gunj


    --

    Dave Peterson

  7. #7
    Dave Peterson
    Guest

    Re: SUMIF simplified

    And I forgot the singleton L, too.

    Dave Peterson wrote:
    >
    > Maybe...
    >
    > =SUM(SUMIF($D$5:$D$156,{"ee","e","m","ll"},$U$5:$U$156))
    >
    > Gunjani wrote:
    > >
    > > Currently I am using the following formulae
    > >
    > > =SUMIF($D$5:$D$156,"=EE",$U$5:$U$156)
    > > =SUMIF($D$5:$D$156,"=E",$U$5:$U$156)
    > > =SUMIF($D$5:$D$156,"=M",$U$5:$U$156)
    > > =SUMIF($D$5:$D$156,"=L",$U$5:$U$156)
    > > =SUMIF($D$5:$D$156,"=LL",$U$5:$U$156)
    > >
    > > Then SUM all the above to get the overall total. How can this be
    > > simplified to one formula.
    > >
    > > I have tried the folloing but with no joy
    > >
    > > =SUMIF($D$5:$D$156,"=EE,E,M,L,LL",$U$5:$U$156)
    > > =SUMIF($D$5:$D$156,"=EE","=E","=M","=L","=LL", $U$5:$U$156)
    > > =SUMIF($D$5:$D$156,OR(EE,E,M,L,LL),$U$5:$U$156)
    > >
    > > but none of the above work.
    > >
    > > any suggestions
    > > Thx
    > > Gunj

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

  8. #8
    Ron Coderre
    Guest

    RE: SUMIF simplified

    Try something like this:

    A1: =SUMPRODUCT((($D$5:$D$156)={"M","LL","L","EE","E"})*$U$5:$U$156)

    Does that help?

    ***********
    Regards,
    Ron

    XL2002, WinXP-Pro


    "Gunjani" wrote:

    > Currently I am using the following formulae
    >
    > =SUMIF($D$5:$D$156,"=EE",$U$5:$U$156)
    > =SUMIF($D$5:$D$156,"=E",$U$5:$U$156)
    > =SUMIF($D$5:$D$156,"=M",$U$5:$U$156)
    > =SUMIF($D$5:$D$156,"=L",$U$5:$U$156)
    > =SUMIF($D$5:$D$156,"=LL",$U$5:$U$156)
    >
    > Then SUM all the above to get the overall total. How can this be
    > simplified to one formula.
    >
    > I have tried the folloing but with no joy
    >
    > =SUMIF($D$5:$D$156,"=EE,E,M,L,LL",$U$5:$U$156)
    > =SUMIF($D$5:$D$156,"=EE","=E","=M","=L","=LL", $U$5:$U$156)
    > =SUMIF($D$5:$D$156,OR(EE,E,M,L,LL),$U$5:$U$156)
    >
    > but none of the above work.
    >
    > any suggestions
    > Thx
    > Gunj
    >
    >


+ 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