+ Reply to Thread
Results 1 to 10 of 10

multiple if(ands 's

Hybrid View

  1. #1
    Registered User
    Join Date
    05-29-2012
    Location
    Florida
    MS-Off Ver
    Excel 2007
    Posts
    31

    multiple if(ands 's

    Hello Everyone,

    Could someone please help me with an equation or at least give me the name of what I am looking for?

    I am trying have excel give a certain amount when two conditions are met. For example When "A" is Present in one cell and "A" is present in another cell, 100 shows up. When "A" is present in one cell, and "B" is present in another cell, a percentage of that number comes up. I have already figure out the formula ...

    =IF(AND(E15="A",G9="A"),G21,IF(AND(E15="A",G9="B"),G21/0.9235

    This works except my entries are limited and I have to input about 70 different combinations. Does anyone have a better shortcut or tell me where I should be looking?
    My raw Data :
    So to Recap : here is what I need to do

    A = 200 A
    B = 300 B
    C........ C
    D........ D
    E........ E
    F........ F
    G........ G
    H........ H
    I......... I
    J........ J
    Percentage Changes
    0.923566879
    0.744225834
    0.645400593
    0.549242424
    0.517857143
    0.460805085
    0.389087657
    0.38107753
    0.305488255

    here is what I need to do
    A & A = 200
    A & B = (200/.923566879)
    A & C = (200/.744225834)
    A & D = (200/.645400593)
    And So on...


    When I finish with the A's I move on to the B's

    B & A = (300-(1-(300/.923566879))
    B & B = 300
    B & C = (300/.65400593)
    and so on..
    and then the c's

    C&A = 400-(1-(400/.923566879))
    C&B = 400 - (1- (400/.744225834)
    C&C = 400
    C&D = 400/.645400593

    and so on until all the combinations are filled



    Anyone know a better way than What I did Above? Or at least What name of equations I should be looking for to find out how to do it for myself? I really appreciate any help.

  2. #2
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: multiple if(ands 's

    Hi and welcome to the forum.

    1) Pls, don't post twice, same question.

    http://www.excelforum.com/excel-gene...if-ands-s.html

    2) Upload a smAll sample workbook, to work on it.
    Regards

    Fotis.

    -This is my Greek whisper to Europe.

    --Remember, saying thanks only takes a second or two. Click the little star * below, to give some Rep if you think an answer deserves it.

    Advanced Excel Techniques: http://excelxor.com/

    --KISS(Keep it simple Stupid)

    --Bring them back.

    ---See about Acropolis of Athens.

    --Visit Greece.

  3. #3
    Forum Expert
    Join Date
    07-20-2011
    Location
    Mysore, India.
    MS-Off Ver
    Excel 2019
    Posts
    8,710

    Re: multiple if(ands 's

    See the attached file. Formula is available in J1 cell.
    Attached Files Attached Files

  4. #4
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: multiple if(ands 's

    Maybe

    =IF(E15=G9,G21,IF(E15<G9,((CODE(E15)-65)*100+G21)/INDEX(B2:B10,CODE(G9)-CODE(E15)),((CODE(E15)-65)*100+G21)-(1-((CODE(F15)-65)*100+G21)/INDEX(B2:B10,CODE(G9)-64))))
    The formula uses your list of Percentage Changes in range B2:B10 - change those references to whatever range holds them

  5. #5
    Registered User
    Join Date
    05-29-2012
    Location
    Florida
    MS-Off Ver
    Excel 2007
    Posts
    31

    Re: multiple if(ands 's

    Thank you so much for your quick responses, but you are all very far advanced in relation to me.

    I set up that example thinking I would be able to understand the end formula and re-apply it but alas I am once again lost.

    I am attaching an excel sheet with the variables I need to apply. What I need to do is written out in section T3. This is something I have put about 45 hours of work into so far and I am at the last leg with this last problem.
    If you can help, I will be forever great full and in your debt. And if you can't I will still be very appreciative of your efforts.
    Thank you for Everything!

  6. #6
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: multiple if(ands 's

    If you change the ranges in AH7:AH16 and AJ5:AS5 to show just the lower figure of the size ranges then you can use this formula (I think) in T3 and dragged down:

    =R3*(1+INDEX($AJ$7:$AS$16,MATCH(S3,$AH$7:$AH$16,1),MATCH(S3,$AJ$5:$AS$5,1)))

  7. #7
    Registered User
    Join Date
    05-29-2012
    Location
    Florida
    MS-Off Ver
    Excel 2007
    Posts
    31

    Re: multiple if(ands 's

    Once Again, I really appreciate the Help,

    but it didn't do the trick. For some reason, the equation just repeats what is on R3, without applying the percentage change to what is on R3.

    Attached is the same worksheet with the minimums applied and the formula added to T3. Thank you so much for looking at it, I feel like I am getting close to the end of my project and I can see the light at the end of the tunnel.

  8. #8
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: multiple if(ands 's

    AH, I misread one of your requirements. I matched S3 in both ranges. Change the first mention of S3 in the formula to K3 so you get:

    =R3*(1+INDEX($AJ$7:$AS$16,MATCH(K3,$AH$7:$AH$16,1),MATCH(S3,$AJ$5:$AS$5,1)))

    Your second entry produces #N/A error because K3 is 0 and your lowest value in the searched range is 300. To get rid of the error you can put the formula in an IFERROR() like so:

    =IFERROR(R3*(1+INDEX($AJ$7:$AS$16,MATCH(K3,$AH$7:$AH$16,1),MATCH(S3,$AJ$5:$AS$5,1))),"")

    which shows nothing if the formula errors but you can replace the "" with whatever result you want to see when a failed match occurs
    Last edited by Cutter; 05-30-2012 at 03:51 PM. Reason: Corrected typo

  9. #9
    Registered User
    Join Date
    05-29-2012
    Location
    Florida
    MS-Off Ver
    Excel 2007
    Posts
    31

    Re: multiple if(ands 's

    Cutter, You are my savior!

    I can't thank you enough.

  10. #10
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: multiple if(ands 's

    I can't thank you enough.
    You just did. You're welcome.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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