Hi
Is it possible to have a button you can only use once.
e.g. a button to sort a list of people into alphabetial order, once used any new staff added at the bottom would not be sorted
Thanks
Hi
Is it possible to have a button you can only use once.
e.g. a button to sort a list of people into alphabetial order, once used any new staff added at the bottom would not be sorted
Thanks
Hi James,
Yes, it's possible. The next question could be how bulletproof do you want it to be (ie do you want to stop people from manually completing a Sort as well*)?
* someone else would need to help you with this.
Here is one approach for a single push button
hth![]()
Private Sub CommandButton1_Click() ' ActiveSheet.Range("a5:c100").Sort Key1:=Range("A2"), Order1:=xlAscending, Header:=xlGuess, _ OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _ DataOption1:=xlSortNormal With CommandButton1 .Enabled = False .WordWrap = True .Caption = "The list has been sorted & this button is now deactivated." End With End Sub
Rob
Rob Brockett
Kiwi in the UK
Always learning & the best way to learn is to experience...
Hello broro183,
Adding on to Rob's code, this macro will enable/disable the Sort... menu item. It will be re-enabled when you close the workbook.
Macro to Enable/Disable the Sort Menu Selection
Rob's code with call to New Macro![]()
Sub ActivateSort(ByVal Status As Boolean) Dim CmdBar As CommandBar Dim BarCtrl As CommandBarControl Dim PopupBar As CommandBarPopup Set CmdBar = CommandBars("Worksheet Menu Bar") Set PopupBar = CmdBar.Controls("&Data") Set BarCtrl = PopupBar.Controls("&Sort...") BarCtrl.Enabled = Status End Sub
Add this macro to ThisWorkbook Module![]()
Private Sub CommandButton1_Click() ' ActiveSheet.Range("a5:c100").Sort Key1:=Range("A2"), Order1:=xlAscending, Header:=xlGuess, _ OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _ DataOption1:=xlSortNormal With CommandButton1 .Enabled = False .WordWrap = True .Caption = "The list has been sorted & this button is now deactivated." End With ActivateSort False End Sub
Sincerely,![]()
Private Sub Workbook_BeforeClose(Cancel As Boolean) ActivateSort True End Sub
Leith Ross
Thankyou both for your help,, now workd fine,,, much appreciated
Very nice Leith :-)
Thanks for the feedback
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks