+ Reply to Thread
Results 1 to 2 of 2

How to get one of three options in a cell based on a drop down selection in another cell

  1. #1
    Registered User
    Join Date
    01-21-2015
    Location
    Lawrenceville, ga
    MS-Off Ver
    2013
    Posts
    1

    How to get one of three options in a cell based on a drop down selection in another cell

    I am hoping someone can help me. I have a drop down box in cell d4 with 3 options. Based on the selection of one of those 3 I need cell e4 to populate with a specific text. For example if in d4 the user selects "Beginner <90 days" then I need e4 to populate with $20/hr. But if the user selects "Trained >90 days" in d4 then I need "$30/hr" to populate in e4. Or if user selects "Professional" in d4 then I need e4 to populate with "$35/hr". I thought I had a formula from a previous question but it says I have too many arguments. Can anyone advise?

  2. #2
    Forum Expert
    Join Date
    03-23-2004
    Location
    London, England
    MS-Off Ver
    Excel 2019
    Posts
    7,082

    Re: How to get one of three options in a cell based on a drop down selection in another ce

    Try

    =LOOKUP(D4,{"Beginner <90 days","Professional","Trained >90 days"},{"$20",""$30","$35"})&"/hr"

    Note LOOKUP needs arguments in first set of brackets {} to be sorted hence Beginner Professional Trained.

    Or

    IF(D4="Beginner <90 days","$20",IF(D4="Trained >90 days","$30",IF(D4="Professional","$35")))&"/hr"
    Regards
    Special-K

    Ensure you describe your problem clearly, I have little time available to solve these problems and do not appreciate numerous changes to them.

+ 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. Replies: 0
    Last Post: 03-20-2014, 10:57 AM
  2. Populating a cell based on drop down selection
    By cronerd in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 06-25-2013, 11:07 AM
  3. Replies: 5
    Last Post: 03-07-2013, 07:29 AM
  4. Replies: 1
    Last Post: 03-06-2012, 10:19 AM
  5. Replies: 4
    Last Post: 05-25-2011, 03:38 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