+ Reply to Thread
Results 1 to 6 of 6

Levels of Nesting more than 7

Hybrid View

  1. #1
    Registered User
    Join Date
    09-21-2010
    Location
    Kansas
    MS-Off Ver
    Excel 2007
    Posts
    4

    Levels of Nesting more than 7

    I am looking for an easy way to make this work:

    =IF(Av17="bid1",i17,IF(Av17="bid2",M17,IF(Av17="bid3",q17,IF(Av17="bid4",u17,IF(Av17="bid5",y17,IF(Av17="bid6",ac17,IF(Av17="bid7",ag17,IF(Av17="bid8",ak17,IF(Av17="bid9",am17,IF(Av17="bid10",as17,""))))))))))

    We do bids for awarding products. Ideally what I'm trying to do is find a simple way (as it works with 7 vendors and below) to put into the the correct amount of money into the cell next to the winning vendor for the product, ie:

    Winning Vendor Winning Bid
    Bid1 17.30
    Bid3 23.20

    This way when I put in the winning vendor, it automatically puts in their bid amount.
    Obviously i can't do this cause I have 10 vendors here, is there an easy way to make this work? I'm not sure I understand LOOKUP very well and I'm kind of a novice, obviously.

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Levels of Nesting more than 7

    Perhaps?

    =INDEX($I17:$AS17,4*(SUBSTITUTE($AV17,"bid","")-1)+1)
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Forum Expert mrice's Avatar
    Join Date
    06-22-2004
    Location
    Surrey, England
    MS-Off Ver
    Excel 2013
    Posts
    4,967

    Re: Levels of Nesting more than 7

    Why not try a user defined function like this.

    Function GetBidAmount(Bidder As Range)
    Select Case Bidder
        Case Is = "bid1"
            GetBidAmount = Bidder.Offset(0, -39)
        Case Is = "bid3"
            GetBidAmount = Bidder.Offset(0, -35)
        'Add as many levels as you like
    
    End Select
    End Function
    Paste this into a new module in the VBA editor (Alt F11) and then enter = GetBidAmount(AV17) in an appropriate cell.
    Last edited by mrice; 12-03-2010 at 04:38 PM.
    Martin

  4. #4
    Registered User
    Join Date
    09-21-2010
    Location
    Kansas
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Levels of Nesting more than 7

    I'll give them a whirl, thanks all...of course, suggestions are still encouraged...I've got to get something done here. Thanks again.

  5. #5
    Registered User
    Join Date
    12-03-2010
    Location
    Home
    MS-Off Ver
    Excel 2000
    Posts
    5

    Re: Levels of Nesting more than 7

    If the value of AV17 will always be "bid"&x, you can use the following:

    =CHOOSE(REPLACE(AV17,1,3,""),I17,M17,Q17,U17,Y17,AC17,AG17,AK17,AM17,AS17)

  6. #6
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Levels of Nesting more than 7

    Here is solution with anything in your cell (bid3, bid10, new_bid_20...) as long as there is a number at the end...
    Attached Files Attached Files
    Never use Merged Cells in Excel

+ 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