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

Macro for delivery details



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old July 15th 08, 05:29 AM
aravindhan_31 aravindhan_31 is offline
Junior Member
 
First recorded activity at Outlookbanter: Jul 2008
Posts: 3
Default Macro for delivery details

Hi,

I send some emails to the managers to fill up some details and send back.
there is a table in the body of the message where he needs to fill up and reply back.
when i receive that mail, I copy that table and paste in another file. but I need the record of the email, example,

From: leo prashanth ]
Sent: Tuesday, June 17, 2008 8:44 PM
To: friends
Subject: The Tiger Temple in Thailand


As of now I click forward on that email so i will get the above details then i copy it and paste again.

Is there a macro, when we receive email all the above details comes in the body of the message after the table. so that I copy the data along with the table and paste.

appreciate very much if some helps me on this.
Ads
  #2  
Old July 15th 08, 08:55 PM posted to microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default Macro for delivery details



You may use the functions Instr, Left, Right, and Mid to extract whatever
you're looking for. The VBA help file has some more details on that.

--
Best regards
Michael Bauer - MVP Outlook

: VBOffice Reporter for Data Analysis & Reporting
: Outlook Categories? Category Manager Is Your Tool
: http://www.vboffice.net/product.html?pub=6&lang=en


Am Tue, 15 Jul 2008 05:29:34 +0100 schrieb aravindhan_31:

Hi,

I send some emails to the managers to fill up some details and send
back.
there is a table in the body of the message where he needs to fill up
and reply back.
when i receive that mail, I copy that table and paste in another file.
but I need the record of the email, example,

FROM: LEO PRASHANTH ]
SENT: TUESDAY, JUNE 17, 2008 8:44 PM
TO: FRIENDS
SUBJECT: THE TIGER TEMPLE IN THAILAND

As of now I click forward on that email so i will get the above details
then i copy it and paste again.

Is there a macro, when we receive email all the above details comes in
the body of the message after the table. so that I copy the data along
with the table and paste.

appreciate very much if some helps me on this.

  #3  
Old July 16th 08, 02:12 PM
aravindhan_31 aravindhan_31 is offline
Junior Member
 
First recorded activity at Outlookbanter: Jul 2008
Posts: 3
Default

Hi,

Thanks for your reply,

but I am not able to understand this. I am completely new to outlook VBA.
please help me on this.

Thanks.

Quote:
Originally Posted by Michael Bauer [MVP - Outlook] View Post
You may use the functions Instr, Left, Right, and Mid to extract whatever
you're looking for. The VBA help file has some more details on that.

--
Best regards
Michael Bauer - MVP Outlook

: VBOffice Reporter for Data Analysis & Reporting
: Outlook Categories? Category Manager Is Your Tool
: http://www.vboffice.net/product.html?pub=6&lang=en


Am Tue, 15 Jul 2008 05:29:34 +0100 schrieb aravindhan_31:

Hi,

I send some emails to the managers to fill up some details and send
back.
there is a table in the body of the message where he needs to fill up
and reply back.
when i receive that mail, I copy that table and paste in another file.
but I need the record of the email, example,

FROM: LEO PRASHANTH ]
SENT: TUESDAY, JUNE 17, 2008 8:44 PM
TO: FRIENDS
SUBJECT: THE TIGER TEMPLE IN THAILAND

As of now I click forward on that email so i will get the above details
then i copy it and paste again.

Is there a macro, when we receive email all the above details comes in
the body of the message after the table. so that I copy the data along
with the table and paste.

appreciate very much if some helps me on this.
  #4  
Old July 17th 08, 07:13 PM posted to microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default Macro for delivery details



I'm sorry, I don't have a ready-to-use code for you.

--
Best regards
Michael Bauer - MVP Outlook

: VBOffice Reporter for Data Analysis & Reporting
: Outlook Categories? Category Manager Is Your Tool
: http://www.vboffice.net/product.html?pub=6&lang=en


Am Wed, 16 Jul 2008 14:12:38 +0100 schrieb aravindhan_31:

Hi,

Thanks for your reply,

but I am not able to understand this. I am completely new to outlook
VBA.
please help me on this.

Thanks.

'Michael Bauer [MVP - Outlook Wrote:
;252200']You may use the functions Instr, Left, Right, and Mid to
extract whatever
you're looking for. The VBA help file has some more details on that.

--
Best regards
Michael Bauer - MVP Outlook

: VBOffice Reporter for Data Analysis & Reporting
: Outlook Categories? Category Manager Is Your Tool
: http://www.vboffice.net/product.html?pub=6&lang=en


Am Tue, 15 Jul 2008 05:29:34 +0100 schrieb aravindhan_31:
-
Hi,

I send some emails to the managers to fill up some details and send
back.
there is a table in the body of the message where he needs to fill up
and reply back.
when i receive that mail, I copy that table and paste in another
file.
but I need the record of the email, example,

FROM: LEO PRASHANTH ]
SENT: TUESDAY, JUNE 17, 2008 8:44 PM
TO: FRIENDS
SUBJECT: THE TIGER TEMPLE IN THAILAND

As of now I click forward on that email so i will get the above
details
then i copy it and paste again.

Is there a macro, when we receive email all the above details comes
in
the body of the message after the table. so that I copy the data
along
with the table and paste.

  #5  
Old July 19th 08, 02:18 PM
aravindhan_31 aravindhan_31 is offline
Junior Member
 
First recorded activity at Outlookbanter: Jul 2008
Posts: 3
Default

Hi ,

Thanks for your reply, But if you could help me finding out how to get the help file, I can try from there.
  #6  
Old July 21st 08, 09:13 PM posted to microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default Macro for delivery details



In the VBA environment click f2 to open the object browser. Then switch from
All libraries to Outlook. Select Items in the left pane and ItemAdd in the
right one. That event tells you when an item gets added to a folder; you
might start with that event.

For any function, just type it and click f1 to get help and (in most cases)
a code sample.

Please come back if you have a specific question.

--
Best regards
Michael Bauer - MVP Outlook

: VBOffice Reporter for Data Analysis & Reporting
: Outlook Categories? Category Manager Is Your Tool
: http://www.vboffice.net/product.html?pub=6&lang=en


Am Sat, 19 Jul 2008 14:18:39 +0100 schrieb aravindhan_31:

Hi ,

Thanks for your reply, But if you could help me finding out how to get
the help file, I can try from there.

 




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
OL 2003 crashes on macro (Alt-F8) or macro editor (Alt-F11) mikewillnot Outlook - General Queries 0 May 5th 08 03:42 PM
Outlook macro abends but Word macro runs successfully Jreue Outlook and VBA 0 December 13th 06 11:55 PM
Call macro stored in Excel workbook from Outlook's macro Gvaram Outlook and VBA 5 October 4th 06 06:26 AM
Print Calendar Details Without So Many Details? movilvr Outlook - Calandaring 0 July 18th 06 08:19 PM
MAPI - Correlate sent mail with delivery and non-delivery receipts Sankar Outlook - Using Forms 0 May 18th 06 01:29 PM


All times are GMT +1. The time now is 03:14 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.