Excel - Sort Sheets Alphabetically

Поділитися
Вставка
  • Опубліковано 26 сер 2024
  • Learn how to easily add a small amount of VBA code to your Excel world to give you the ability to sort your sheet tabs in either ascending or descending order.
    Importable VBA code:
    www.bcti.com//...
    Quick Access Toolbar - Ultimate Customization Guide:
    • Microsoft Office - Qui...
    VBA Code for Copy/Pasters:
    =======================
    (I found out too late that certain symbols in the VBA code are not allowed in a UA-cam description field. You can still download the file, open it in Notepad, then copy/paste it from there.)
  • Наука та технологія

КОМЕНТАРІ • 16

  • @kebincui
    @kebincui 4 місяці тому +1

    You are always great in producing so excellent tutorials 👍. Thank you very much.

    • @bcti-bcti
      @bcti-bcti  4 місяці тому

      Thanks so much for taking the time to watch and comment nicely!

  • @ish011
    @ish011 4 місяці тому

    You're a great help, Thank you!

    • @bcti-bcti
      @bcti-bcti  4 місяці тому

      You are most welcome.

  • @RadAlzyoud
    @RadAlzyoud 4 місяці тому

    Very helpful.
    I always wondered why.
    Thank you for the video/code and totally agree with you regarding this.

  • @willbedeadsoon
    @willbedeadsoon 4 місяці тому

    Great lesson as always

  • @ExcelUnlocked
    @ExcelUnlocked 4 місяці тому

    Amazing

    • @bcti-bcti
      @bcti-bcti  4 місяці тому

      Thanks for saying so.

  • @hankgrimes1806
    @hankgrimes1806 Місяць тому

    Good functionality to have in my arsenal. Would you please explain the difference between saving to your Personal Macro Workbook and saving as a Macro Enabled workbook?

    • @bcti-bcti
      @bcti-bcti  Місяць тому

      Check out this video I made on the Personal Macro Workbook.
      ua-cam.com/video/IGj-Ke8XWLo/v-deo.html
      If you are still unclear after watching, please let me know and I'll answer your specific questions.
      Cheers

  • @et.sachin
    @et.sachin 4 місяці тому

    Is it possible to replicate the QUERY function from Google Sheets on Excel?

    • @bcti-bcti
      @bcti-bcti  4 місяці тому

      There is no direct analog in Excel's function library to Google Sheets' QUERY function. You would likely need to use a combination of Excel functions to achieve the same goal. Functions like FILTER, CHOOSECOLS/CHOOSEROWS, UNIQUE, SORT/SORTBY, TAKE/DROP, etc.

    • @et.sachin
      @et.sachin 4 місяці тому

      @@bcti-bcti can you please try to do a video on that

    • @bcti-bcti
      @bcti-bcti  4 місяці тому

      @@et.sachin This would be a MONUMENTAL video as Excel does not have a single function that executes all of what Google Sheets' QUERY() function performs. If it helps, below is a list of Sheets' QUERY() arguments and what would be analogous using Excel functions:
      Sheets ------> Excel
      ------------------------------
      Select ------> ChooseCols
      Where ------> Filter
      Group By ------> GroupBy
      Pivot ------> PivotBy
      Order By ------> Sort
      Limit ------> Take
      Offset ------> Offset
      Label ------> VStack
      Format ------> Text

  • @seanmurphy4077
    @seanmurphy4077 4 місяці тому

    I had an issue with having to sort by color THEN alphabetical…that was not a fun code to figure out!

    • @bcti-bcti
      @bcti-bcti  4 місяці тому

      I thought about showing the "sort by color" version, but I didn't want to make the video any more complicated than it needed to be. I feel your pain. I don't think I've ever done it as a hierarchical sort. That sounds challenging. Thanks for watching.