+ Reply to Thread
Results 1 to 7 of 7

Combobox

  1. #1
    teresa
    Guest

    Combobox

    Hi,

    I have a couple of macros which:

    a) sort a list by client
    b) sort a list by value

    I need two options within the combo box
    and when I choose option "SORT-CLIENT" the first macro is run

    Thks



  2. #2
    Bob Phillips
    Guest

    Re: Combobox

    In two cells, say AA1 and AA2, put the values SORT-CLIENT and SORT-LIST,
    select a combobox form the Forms toolbar, and right-click the combox to
    select Format Control from the menu, and on the Control tab set the Input
    Range texbox to AA1:AA2, and the Cell link textbox to AA3. OK out.

    Add this macro to a general code module

    Sub SortData()
    If Worksheets("Sheet1").Range("AA3").Value ="SORT-CLIENT" Then
    SortbyClientMacro
    Else
    SortByValueMacro
    End If
    End Sub

    Now go back to the worksheet, right-click the combobox again, select Assign
    Macro, and assign the above macro to the combobox.

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "teresa" <teresa@discussions.microsoft.com> wrote in message
    news:F554ED99-2017-4A15-B22A-406068F9C87C@microsoft.com...
    > Hi,
    >
    > I have a couple of macros which:
    >
    > a) sort a list by client
    > b) sort a list by value
    >
    > I need two options within the combo box
    > and when I choose option "SORT-CLIENT" the first macro is run
    >
    > Thks
    >
    >




  3. #3
    teresa
    Guest

    Re: Combobox

    Thanks Bob - thats very helpful



    "Bob Phillips" wrote:

    > In two cells, say AA1 and AA2, put the values SORT-CLIENT and SORT-LIST,
    > select a combobox form the Forms toolbar, and right-click the combox to
    > select Format Control from the menu, and on the Control tab set the Input
    > Range texbox to AA1:AA2, and the Cell link textbox to AA3. OK out.
    >
    > Add this macro to a general code module
    >
    > Sub SortData()
    > If Worksheets("Sheet1").Range("AA3").Value ="SORT-CLIENT" Then
    > SortbyClientMacro
    > Else
    > SortByValueMacro
    > End If
    > End Sub
    >
    > Now go back to the worksheet, right-click the combobox again, select Assign
    > Macro, and assign the above macro to the combobox.
    >
    > --
    >
    > HTH
    >
    > RP
    > (remove nothere from the email address if mailing direct)
    >
    >
    > "teresa" <teresa@discussions.microsoft.com> wrote in message
    > news:F554ED99-2017-4A15-B22A-406068F9C87C@microsoft.com...
    > > Hi,
    > >
    > > I have a couple of macros which:
    > >
    > > a) sort a list by client
    > > b) sort a list by value
    > >
    > > I need two options within the combo box
    > > and when I choose option "SORT-CLIENT" the first macro is run
    > >
    > > Thks
    > >
    > >

    >
    >
    >


  4. #4
    teresa
    Guest

    Re: Combobox

    Ive tried the below - howver doesnt seem to call CL, always calls "Value"

    Thanks

    Private Sub ComboBox1_Change()

    If Worksheets("Sheet1").Range("AA3").Value = "C" Then
    Call CL
    Else
    Call Value
    End If
    End Sub


    "Bob Phillips" wrote:

    > In two cells, say AA1 and AA2, put the values SORT-CLIENT and SORT-LIST,
    > select a combobox form the Forms toolbar, and right-click the combox to
    > select Format Control from the menu, and on the Control tab set the Input
    > Range texbox to AA1:AA2, and the Cell link textbox to AA3. OK out.
    >
    > Add this macro to a general code module
    >
    > Sub SortData()
    > If Worksheets("Sheet1").Range("AA3").Value ="SORT-CLIENT" Then
    > SortbyClientMacro
    > Else
    > SortByValueMacro
    > End If
    > End Sub
    >
    > Now go back to the worksheet, right-click the combobox again, select Assign
    > Macro, and assign the above macro to the combobox.
    >
    > --
    >
    > HTH
    >
    > RP
    > (remove nothere from the email address if mailing direct)
    >
    >
    > "teresa" <teresa@discussions.microsoft.com> wrote in message
    > news:F554ED99-2017-4A15-B22A-406068F9C87C@microsoft.com...
    > > Hi,
    > >
    > > I have a couple of macros which:
    > >
    > > a) sort a list by client
    > > b) sort a list by value
    > >
    > > I need two options within the combo box
    > > and when I choose option "SORT-CLIENT" the first macro is run
    > >
    > > Thks
    > >
    > >

    >
    >
    >


  5. #5
    Tom Ogilvy
    Guest

    Re: Combobox

    Try:

    Private Sub ComboBox1_Click()

    If Combobox1.value = "C" Then
    Call CL
    Else
    Call Value
    End If
    End Sub

    --
    Regards,
    Tom Ogilvy

    "teresa" <teresa@discussions.microsoft.com> wrote in message
    news:F62440AA-7552-49A1-9E7A-A4AD8F55CDF5@microsoft.com...
    > Ive tried the below - howver doesnt seem to call CL, always calls "Value"
    >
    > Thanks
    >
    > Private Sub ComboBox1_Change()
    >
    > If Worksheets("Sheet1").Range("AA3").Value = "C" Then
    > Call CL
    > Else
    > Call Value
    > End If
    > End Sub
    >
    >
    > "Bob Phillips" wrote:
    >
    > > In two cells, say AA1 and AA2, put the values SORT-CLIENT and SORT-LIST,
    > > select a combobox form the Forms toolbar, and right-click the combox to
    > > select Format Control from the menu, and on the Control tab set the

    Input
    > > Range texbox to AA1:AA2, and the Cell link textbox to AA3. OK out.
    > >
    > > Add this macro to a general code module
    > >
    > > Sub SortData()
    > > If Worksheets("Sheet1").Range("AA3").Value ="SORT-CLIENT" Then
    > > SortbyClientMacro
    > > Else
    > > SortByValueMacro
    > > End If
    > > End Sub
    > >
    > > Now go back to the worksheet, right-click the combobox again, select

    Assign
    > > Macro, and assign the above macro to the combobox.
    > >
    > > --
    > >
    > > HTH
    > >
    > > RP
    > > (remove nothere from the email address if mailing direct)
    > >
    > >
    > > "teresa" <teresa@discussions.microsoft.com> wrote in message
    > > news:F554ED99-2017-4A15-B22A-406068F9C87C@microsoft.com...
    > > > Hi,
    > > >
    > > > I have a couple of macros which:
    > > >
    > > > a) sort a list by client
    > > > b) sort a list by value
    > > >
    > > > I need two options within the combo box
    > > > and when I choose option "SORT-CLIENT" the first macro is run
    > > >
    > > > Thks
    > > >
    > > >

    > >
    > >
    > >




  6. #6
    teresa
    Guest

    Re: Combobox

    Thanks Tom - works fine

    "Tom Ogilvy" wrote:

    > Try:
    >
    > Private Sub ComboBox1_Click()
    >
    > If Combobox1.value = "C" Then
    > Call CL
    > Else
    > Call Value
    > End If
    > End Sub
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    > "teresa" <teresa@discussions.microsoft.com> wrote in message
    > news:F62440AA-7552-49A1-9E7A-A4AD8F55CDF5@microsoft.com...
    > > Ive tried the below - howver doesnt seem to call CL, always calls "Value"
    > >
    > > Thanks
    > >
    > > Private Sub ComboBox1_Change()
    > >
    > > If Worksheets("Sheet1").Range("AA3").Value = "C" Then
    > > Call CL
    > > Else
    > > Call Value
    > > End If
    > > End Sub
    > >
    > >
    > > "Bob Phillips" wrote:
    > >
    > > > In two cells, say AA1 and AA2, put the values SORT-CLIENT and SORT-LIST,
    > > > select a combobox form the Forms toolbar, and right-click the combox to
    > > > select Format Control from the menu, and on the Control tab set the

    > Input
    > > > Range texbox to AA1:AA2, and the Cell link textbox to AA3. OK out.
    > > >
    > > > Add this macro to a general code module
    > > >
    > > > Sub SortData()
    > > > If Worksheets("Sheet1").Range("AA3").Value ="SORT-CLIENT" Then
    > > > SortbyClientMacro
    > > > Else
    > > > SortByValueMacro
    > > > End If
    > > > End Sub
    > > >
    > > > Now go back to the worksheet, right-click the combobox again, select

    > Assign
    > > > Macro, and assign the above macro to the combobox.
    > > >
    > > > --
    > > >
    > > > HTH
    > > >
    > > > RP
    > > > (remove nothere from the email address if mailing direct)
    > > >
    > > >
    > > > "teresa" <teresa@discussions.microsoft.com> wrote in message
    > > > news:F554ED99-2017-4A15-B22A-406068F9C87C@microsoft.com...
    > > > > Hi,
    > > > >
    > > > > I have a couple of macros which:
    > > > >
    > > > > a) sort a list by client
    > > > > b) sort a list by value
    > > > >
    > > > > I need two options within the combo box
    > > > > and when I choose option "SORT-CLIENT" the first macro is run
    > > > >
    > > > > Thks
    > > > >
    > > > >
    > > >
    > > >
    > > >

    >
    >
    >


  7. #7
    Dave D-C
    Guest

    Re: Combobox

    steps:
    1. create the combobox
    2. populate the combobox
    3. assign a routine to a combobox event
    4. code the routine
    Which step are you on?

    you wrote:
    >I have a couple of macros which:
    >
    >a) sort a list by client
    >b) sort a list by value
    >
    >I need two options within the combo box
    >and when I choose option "SORT-CLIENT" the first macro is run



    ----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
    http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
    ----= East and West-Coast Server Farms - Total Privacy via Encryption =----

+ 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