+ Reply to Thread
Results 1 to 3 of 3

macro that brings user to cell based on "yes/no" response

  1. #1
    lennyx2
    Guest

    macro that brings user to cell based on "yes/no" response

    Hi to all,
    I'm not too good with macros, but i'm learning.
    I am constructing a survey tool and would like a macro that automatically
    goes to a cell based on the Yes or No response selected from a drop-down box
    in another cell. For example, if NO then go to question #4.

    Any thoughts? Much appreciated.

  2. #2
    Guest

    macro that brings user to cell based on "yes/no" response

    hi,
    assuming that each question has a combo box.
    Assuming that the combo box in column A
    Assuming that each question is on each row.
    Right click the combo box in design mode. cleck view code.
    Private Sub ComboBox1_Change()
    If ComboBox1.Value = "No" Then
    Range("B5").select
    end if
    end sub
    >-----Original Message-----
    >Hi to all,
    >I'm not too good with macros, but i'm learning.
    >I am constructing a survey tool and would like a macro

    that automatically
    >goes to a cell based on the Yes or No response selected

    from a drop-down box
    >in another cell. For example, if NO then go to question

    #4.
    >
    >Any thoughts? Much appreciated.
    >.
    >


  3. #3
    lennyx2
    Guest

    RE: macro that brings user to cell based on "yes/no" response

    I'm using data validation for a list of acceptable answers, would you
    recommend the combo box route instead?

    "lennyx2" wrote:

    > Hi to all,
    > I'm not too good with macros, but i'm learning.
    > I am constructing a survey tool and would like a macro that automatically
    > goes to a cell based on the Yes or No response selected from a drop-down box
    > in another cell. For example, if NO then go to question #4.
    >
    > Any thoughts? Much appreciated.


+ 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