Results 1 to 7 of 7

Thread: Sun Runner: Excel question -No BJ

  1. #1
    Sun Runner
    Guest

    Sun Runner: Excel question -No BJ

    I have a workbook with several dozens tabs (worksheets) in it.

    Is there any way to alpha sort those tabs (worksheets) within the workbook?

    (Not the info within the worksheets, just the worksheets themselves.)

    Thanks in advance.

  2. #2
    MGP
    Guest

    MGP: You could do it manually by just dragging them *NM*


  3. #3
    Sun Runner
    Guest

    Sun Runner: That requires a command of the alphabet *NM*


  4. #4
    Norm Wattenberger
    Guest

    Norm Wattenberger: Ahhh but


    if you don't have a command of the alphabet, just pretend they are in order.

    True story: A rather unbalanced individual I knew some years back commented that there was nothing about the looks of the letters of the alphabet that connoted their sounds. So, if you taught a child the alphabet backwards, that a was zed and zed was a, and gave him a book where the letters were thusly substituted, it would make as much sense as teaching the alphabet correctly. Fortunately his friends convinced him that experimenting on his children wasn?t a great idea.



  5. #5
    MGP
    Guest

    MGP: Try this...

    1) Record a bogus macro and just select a cell or something.
    2) Edit the macro and paste the procedure below over the entire thing
    3) Run it.

    Hope this helps,
    MGP

     
    Sub SortSheets()
    Dim CurrentSheet As Integer
    Dim PriorSheet As Integer

    If Sheets.Count > 1 Then
    For CurrentSheet = 2 To Sheets.Count
    For PriorSheet = 1 To CurrentSheet - 1
    If Sheets(CurrentSheet).Name < Sheets(PriorSheet).Name Then
    Sheets(CurrentSheet).Move Before:=Sheets(PriorSheet)
    Exit For
    End If
    Next PriorSheet
    Next CurrentSheet
    End If

    Sheets(1).Select
    End Sub

  6. #6
    Sun Runner
    Guest

    Sun Runner: Worked like a charm !

    What a great tool to have.

    I owe you big; of course will probably never have the opportunity to repay.

    Hope the appreciation of a poor, overworked, pick and shovel guy is thanks enough.

  7. #7
    MGP
    Guest

    MGP: re: Worked like a charm !

    > What a great tool to have.

    > I owe you big; of course will probably never
    > have the opportunity to repay.

    > Hope the appreciation of a poor, overworked,
    > pick and shovel guy is thanks enough.

    It's more than enough, glad I could help.

    Sincerely,
    MGP

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
  •  

About Blackjack: The Forum

BJTF is an advantage player site based on the principles of comity. That is, civil and considerate behavior for the mutual benefit of all involved. The goal of advantage play is the legal extraction of funds from gaming establishments by gaining a mathematic advantage and developing the skills required to use that advantage. To maximize our success, it is important to understand that we are all on the same side. Personal conflicts simply get in the way of our goals.