+ Reply to Thread
Results 1 to 4 of 4

Multiple Criteria Calculation

  1. #1
    Registered User
    Join Date
    01-24-2012
    Location
    Las Vegas, Nevada
    MS-Off Ver
    Excel 2007
    Posts
    9

    Multiple Criteria Calculation

    Hello -

    I am struggling with a complicated formula. Any help is greatly appreciated.

    Calculation intent -
    1. Look for items in column F that do not contain the letter "X" or a hyphen "-". And. . .
    2. Look for items in column C that contain the word "Tangible" and sum applicable items in column AG and multiply by defined variable "TaxTan"
    3. Then add that to ...
    4. Look for items in column F that do not contain the letter "X" or hyphen "-" And. . .
    5. Look for items in column C that contain the word "Intangible" and sum applicable items in column AG and multiply by defined variable "TaxIntan"
    6. Then multiply the total sum by defined variable GA

    Here is my stab at it and it is obviously not working.

    =IF(AND($F$9:$F$113<>"*X*",$F$9:$F$113<>"-",$C$9:$C$113="Tangible"),SUM($AG$9:$AG$113)*TaxTan,0)+IF(AND($F$9:$F$113<>"*X*",$F$9:$F$113<>"-",$C$9:$C$113="Intangible"),SUM($AG$9:$AG$113)*TaxIntan,0)*GA

    Thanks in advance.

  2. #2
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Multiple Criteria Calculation

    =((SUMIFS(AG:AG,F:F,"<>"&"X",F:F,"<>"&"-",C:C,"Tangible")*TaxTan)+(SUMIFS(AG:AG,F:F,"<>"&"X",C:C,"Intangible")*TaxIntan))*GA
    Make Mom proud: Add to my reputation if I helped out!

    Make the Moderators happy: Mark the Thread as Solved if your question was answered!

  3. #3
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,191

    Re: Multiple Criteria Calculation

    Alternative

    =(SUMPRODUCT(((F3:F7<>"x")*(F3:F7<>"-"))*((C3:C7="Tangible")+(C3:C7="Intangible"))*(AG3:AG7))*Taxtan)*GA

  4. #4
    Registered User
    Join Date
    01-24-2012
    Location
    Las Vegas, Nevada
    MS-Off Ver
    Excel 2007
    Posts
    9

    Re: Multiple Criteria Calculation

    Worked perfectly thanks!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] countifs statement with multiple criteria for multiple criteria ranges
    By mcdermott2 in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 05-07-2015, 11:48 AM
  2. SLA Calculation with criteria
    By dwhite30518 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 02-21-2015, 11:27 AM
  3. [SOLVED] Percentage calculation based on multiple date criteria
    By odahilys in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 01-26-2015, 10:10 AM
  4. [SOLVED] UDF for sum of multiple criteria in multiple columns and single criteria in multiple colum
    By Ganesh7299 in forum Excel Programming / VBA / Macros
    Replies: 32
    Last Post: 11-22-2013, 04:26 AM
  5. [SOLVED] IF calculation with multiple criteria with formula derived numerical and text results
    By Groovicles in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 08-29-2013, 06:19 PM
  6. Calculation based on multiple criteria
    By excelaudio in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 06-05-2013, 03:25 PM
  7. Sumproduct w/multiple criteria including a division calculation
    By cedarhill in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 05-02-2010, 01:12 PM

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