+ Reply to Thread
Results 1 to 4 of 4

Getting drop down to change next cell

  1. #1
    Registered User
    Join Date
    12-29-2005
    Posts
    2

    Getting drop down to change next cell

    I have a drop down of the numbers 5-1.
    If someone selects 5, I want the cell next to it to say 6%
    If someone selects 4, I want the cell next to it to say 4.5%
    as so on.

    Can anyone explain how to do this?

    Thanks!

  2. #2
    Forum Expert Ron Coderre's Avatar
    Join Date
    03-22-2005
    Location
    Boston, Massachusetts
    MS-Off Ver
    2013, 2016, O365
    Posts
    6,996
    Here's one way:

    For the dropdown in A1.....
    B1: =CHOOSE(A1,1%,2%,3%,4.5%,6%)

    The first argument of CHOOSE must be an integer
    The above example equates to:
    If A1 is 1, then 1%
    If A1 is 2, then 2%
    If A1 is 3, then 3%
    If A1 is 4, then 4.5%
    If A1 is 5, then 6%

    Post back if you have questions.

    Does that help?

    Regards,
    Ron

  3. #3
    Registered User
    Join Date
    12-29-2005
    Posts
    2
    Awesome! Thanks

  4. #4
    RagDyer
    Guest

    Re: Getting drop down to change next cell

    Extending your range, that means a "1" in the drop-down should return zero
    .... correct?

    6, 4.5, 3, 1.5, 0

    So, with the drop-down in A1,
    Try this in B1:

    =LOOKUP(A1,{1,2,3,4,5;0,1.5,3,4.5,6})

    --
    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "KevinR" <[email protected]> wrote in
    message news:[email protected]...
    >
    > I have a drop down of the numbers 5-1.
    > If someone selects 5, I want the cell next to it to say 6%
    > If someone selects 4, I want the cell next to it to say 4.5%
    > as so on.
    >
    > Can anyone explain how to do this?
    >
    > Thanks!
    >
    >
    > --
    > KevinR
    > ------------------------------------------------------------------------
    > KevinR's Profile:

    http://www.excelforum.com/member.php...o&userid=29982
    > View this thread: http://www.excelforum.com/showthread...hreadid=496785
    >



+ 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