Hi there!
You can accomplish your task with a little VBA Sub.
Open your workbook and hit alt. F11. This will open the VBA editor. Goto the Insert tab and select Module. A window will open. Paste the code below into the window and only two small tasks remain. 1. identifying the column number that contains the data you want to sort, and 2. assigning the macro to a shortcut key, like ctrl+S or something.
I assume you have headings on your columns. If not we will have to adjust the code for that as well. This code as is, will sort all data from the 2nd row down and I have the sort data column as 3. There is a note around this row explaining which number to change.
To assign the Macro to a shortcut key, go to the view tab in the ribbon at the top of the spreadsheet. On the right, you will see Macros. Click and select View Macros. If you have multiple macros, find the one called Sort, and highlight it. Click the Options Button. Where it says Shortcut Key, pick the letter you want to use and click OK. Close the Macro window and now, when you hit ctrl+(your letter), the Macro will run, sorting your entire sheet based on the column containing the sort data.
Bookmarks