![]() |
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
|
|||
|
|||
![]()
I need outlook to automatically move all messages with a particular subject into a network folder.
Easy enough... Problem: Say I send, they reply, I send, they reply.. and multiple versions of the same message are created and dropped into this network folder. I need a some type of trick/methodology to replace the previous message with the most current email in this network folder. while deleting or moving the old messages out of the network folder. . Submitted using http://www.outlookforums.com |
Ads |
#2
|
|||
|
|||
![]() If the subject is equal, there's nothing to do as an existing file gets overwritten. -- Best regards Michael Bauer - MVP Outlook : Outlook Categories? Category Manager Is Your Tool : VBOffice Reporter for Data Analysis & Reporting : http://www.vboffice.net/product.html?pub=6&lang=en Am Fri, 21 Aug 2009 01:34:30 -0400 schrieb Jon C: I need outlook to automatically move all messages with a particular subject into a network folder. Easy enough... Problem: Say I send, they reply, I send, they reply.. and multiple versions of the same message are created and dropped into this network folder. I need a some type of trick/methodology to replace the previous message with the most current email in this network folder. while deleting or moving the old messages out of the network folder. . Submitted using http://www.outlookforums.com |
#3
|
|||
|
|||
![]()
"Michael Bauer [MVP - Outlook]" wrote:
If the subject is equal, there's nothing to do as an existing file gets overwritten. Overwriting an existing file can be avoided by testing its existence Dim myFID As String Set myFS = CreateObject("Scripting.FileSystemObject") ... myFID = ... ... If myFS.FileExists(myFID) ... but how can "the most current email" be detected? Wilfried Am Fri, 21 Aug 2009 01:34:30 -0400 schrieb Jon C: I need outlook to automatically move all messages with a particular subject into a network folder. Easy enough... Problem: Say I send, they reply, I send, they reply.. and multiple versions of the same message are created and dropped into this network folder. I need a some type of trick/methodology to replace the previous message with the most current email in this network folder. while deleting or moving the old messages out of the network folder. . Submitted using http://www.outlookforums.com |
#4
|
|||
|
|||
![]() Sort the Items collection by ReceivedTime. -- Best regards Michael Bauer - MVP Outlook : Outlook Categories? Category Manager Is Your Tool : VBOffice Reporter for Data Analysis & Reporting : http://www.vboffice.net/product.html?pub=6&lang=en Am Fri, 21 Aug 2009 13:15:42 +0200 schrieb Wilfried: "Michael Bauer [MVP - Outlook]" wrote: If the subject is equal, there's nothing to do as an existing file gets overwritten. Overwriting an existing file can be avoided by testing its existence Dim myFID As String Set myFS = CreateObject("Scripting.FileSystemObject") ... myFID = ... ... If myFS.FileExists(myFID) ... but how can "the most current email" be detected? Wilfried Am Fri, 21 Aug 2009 01:34:30 -0400 schrieb Jon C: I need outlook to automatically move all messages with a particular subject into a network folder. Easy enough... Problem: Say I send, they reply, I send, they reply.. and multiple versions of the same message are created and dropped into this network folder. I need a some type of trick/methodology to replace the previous message with the most current email in this network folder. while deleting or moving the old messages out of the network folder. . Submitted using http://www.outlookforums.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Still no idea. Try'd another trick... | [email protected] | Add-ins for Outlook | 1 | October 1st 08 07:16 AM |
Outlook Help Needed | [email protected] | Outlook - Using Contacts | 2 | July 12th 07 03:45 AM |
What's going on with the trick to copy Sent Items to IMAP folder? | Santiago | Outlook - General Queries | 1 | August 20th 06 03:28 AM |
Help needed with Outlook | Ian van | Outlook - Using Contacts | 1 | August 7th 06 10:23 AM |
New Spammer Trick? | mcp6453 | Outlook - General Queries | 2 | January 30th 06 11:10 PM |