+ Reply to Thread
Results 1 to 5 of 5

Single Use Comand Button

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    08-04-2008
    Location
    West Calder, Scotland
    MS-Off Ver
    365
    Posts
    430

    Single Use Comand Button

    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

  2. #2
    Forum Expert
    Join Date
    01-03-2006
    Location
    Waikato, New Zealand
    MS-Off Ver
    2010 @ work & 2007 @ home
    Posts
    2,243
    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

    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
    hth
    Rob
    Rob Brockett
    Kiwi in the UK
    Always learning & the best way to learn is to experience...

  3. #3
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    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
    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
    Rob's code with call to New Macro
    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
    Add this macro to ThisWorkbook Module
    Private Sub Workbook_BeforeClose(Cancel As Boolean)
      ActivateSort True
    End Sub
    Sincerely,
    Leith Ross

  4. #4
    Forum Contributor
    Join Date
    08-04-2008
    Location
    West Calder, Scotland
    MS-Off Ver
    365
    Posts
    430
    Thankyou both for your help,, now workd fine,,, much appreciated

  5. #5
    Forum Expert
    Join Date
    01-03-2006
    Location
    Waikato, New Zealand
    MS-Off Ver
    2010 @ work & 2007 @ home
    Posts
    2,243
    Very nice Leith :-)

    Thanks for the feedback

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Building a "sheet" inside a single cell
    By Eagle in forum Excel - New Users/Basics
    Replies: 3
    Last Post: 09-04-2008, 05:24 PM
  2. Forms: system error + error 361
    By opopanax666 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-19-2008, 07:25 AM
  3. Plotting straight line using a single value
    By cogar in forum Excel Charting & Pivots
    Replies: 7
    Last Post: 03-05-2008, 08:53 PM
  4. Append multiple worksheets into single worksheet
    By steve-waters in forum Excel General
    Replies: 1
    Last Post: 01-02-2008, 06:11 AM
  5. New to writing macros
    By ynnod in forum Excel Programming / VBA / Macros
    Replies: 16
    Last Post: 09-06-2007, 10:20 PM

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