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
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
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
>
>
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
> >
> >
>
>
>
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
> >
> >
>
>
>
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
> > >
> > >
> >
> >
> >
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
> > > >
> > > >
> > >
> > >
> > >
>
>
>
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 =----
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks