![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Folks, I have searched many of the MSDN forums as well as a few Google
searches, and cannot come up with an easy way to do this, so let me ask the experts. I deal with a lot of email every day. Sometimes I need to see the emails sorted by date, sometimes by who they are from, and sometimes by Subject. I know I can take my hands off the keyboard, right click the mouse on the header bar, then pick date, from, subject... Being the old school hands on the keyboard guy I am, my preference is to come up with 3 macros that I can assign to hot keys. This is the kind of thing that is a piece of cake in Excel with the macro recorder, but I am having a giggle figuring out where to start on Outlook. I have slightly more than entry-level knowledge of Excel VBA... Looking for a sample, or a pointer to some doc that may help me out. I'd appreciate the help! Jim -- -------------- Jim Conrady |
Ads |
#2
|
|||
|
|||
![]() You might start with the Object Browser (f2), which is very helpful. Switch from All Libraries to Outlook and type in 'sort'. It lists one Sort method for the Items collection. Select that and click f1 for a sample. Via Toolbars/Customize you can create one button for each macro. Name each button with a '&' before the character that should be used as the 'hotkey'. That works if you find characters that aren't being used already. -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Organize eMails: http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6 Am Wed, 1 Aug 2007 14:46:09 -0700 schrieb Jim Conrady: Folks, I have searched many of the MSDN forums as well as a few Google searches, and cannot come up with an easy way to do this, so let me ask the experts. I deal with a lot of email every day. Sometimes I need to see the emails sorted by date, sometimes by who they are from, and sometimes by Subject. I know I can take my hands off the keyboard, right click the mouse on the header bar, then pick date, from, subject... Being the old school hands on the keyboard guy I am, my preference is to come up with 3 macros that I can assign to hot keys. This is the kind of thing that is a piece of cake in Excel with the macro recorder, but I am having a giggle figuring out where to start on Outlook. I have slightly more than entry-level knowledge of Excel VBA... Looking for a sample, or a pointer to some doc that may help me out. I'd appreciate the help! Jim |
#3
|
|||
|
|||
![]()
Unfortunately, sorting the Items collection programmatically doesn't affect the screen display.
The way I'd approach this is to create a new table view for each sort. Then each macro should be as simple as: Sub ShowViewA() Application.ActiveExplorer.CurrentView = "ViewA" End Sub -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Michael Bauer [MVP - Outlook]" wrote in message ... You might start with the Object Browser (f2), which is very helpful. Switch from All Libraries to Outlook and type in 'sort'. It lists one Sort method for the Items collection. Select that and click f1 for a sample. Via Toolbars/Customize you can create one button for each macro. Name each button with a '&' before the character that should be used as the 'hotkey'. That works if you find characters that aren't being used already. -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Organize eMails: http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6 Am Wed, 1 Aug 2007 14:46:09 -0700 schrieb Jim Conrady: Folks, I have searched many of the MSDN forums as well as a few Google searches, and cannot come up with an easy way to do this, so let me ask the experts. I deal with a lot of email every day. Sometimes I need to see the emails sorted by date, sometimes by who they are from, and sometimes by Subject. I know I can take my hands off the keyboard, right click the mouse on the header bar, then pick date, from, subject... Being the old school hands on the keyboard guy I am, my preference is to come up with 3 macros that I can assign to hot keys. This is the kind of thing that is a piece of cake in Excel with the macro recorder, but I am having a giggle figuring out where to start on Outlook. I have slightly more than entry-level knowledge of Excel VBA... Looking for a sample, or a pointer to some doc that may help me out. I'd appreciate the help! Jim |
#4
|
|||
|
|||
![]() You're right, of course ![]() -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Organize eMails: http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6 Am Thu, 2 Aug 2007 08:44:12 -0400 schrieb Sue Mosher [MVP-Outlook]: Unfortunately, sorting the Items collection programmatically doesn't affect the screen display. The way I'd approach this is to create a new table view for each sort. Then each macro should be as simple as: Sub ShowViewA() Application.ActiveExplorer.CurrentView = "ViewA" End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Outlook macro abends but Word macro runs successfully | Jreue | Outlook and VBA | 0 | December 13th 06 11:55 PM |
How do I sort my birthdays by month I have 500 of them? Outlook | Thomas | Outlook - Using Contacts | 2 | October 31st 06 12:47 AM |
Call macro stored in Excel workbook from Outlook's macro | Gvaram | Outlook and VBA | 5 | October 4th 06 06:26 AM |
Creating macro that will sort emails into folders based on text in body | mugginns | Outlook and VBA | 5 | October 3rd 06 07:49 AM |
Sort order changes in Outlook | Davis | Outlook - General Queries | 0 | June 2nd 06 02:36 PM |