A Microsoft Outlook email forum. Outlook Banter

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.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Outlook Sort Macro



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old August 1st 07, 10:46 PM posted to microsoft.public.outlook.program_vba
Jim Conrady
external usenet poster
 
Posts: 2
Default Outlook Sort Macro

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  
Old August 2nd 07, 06:03 AM posted to microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default Outlook Sort Macro



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  
Old August 2nd 07, 01:44 PM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Outlook Sort Macro

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  
Old August 3rd 07, 05:43 AM posted to microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default Outlook Sort Macro



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
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
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


All times are GMT +1. The time now is 12:44 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.