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

Tags: , , , ,

extracting mailitem.body text to Excel columns





 
 
Thread Tools Display Modes
  #1  
Old April 16th 06, 01:41 PM posted to microsoft.public.outlook.program_vba
Junoon
external usenet poster
 
Posts: 27
Default extracting mailitem.body text to Excel columns

Hi,

I am trying to Compare names in first column of excel sheet with
objitem.SenderName,. IF Found, then copy the mailitem.body text into 3
columns viz, Location, EmpID & Shift-Time.

The mailitem.body has 3 lines of data viz.,

Location: value
EmpID: value
Shift-Time: value

For Each Mailitem, i want to COMPARE the senderName, if found, then
SPLIT the mailitem.body text at every '/n' (enter), then compare the
Labels (e.g. Location) with the Column headers (e.g. Location) & then
dump the corresponding value of Labels under the respective columns.

Can anyone help ASAP!

Ads
  #2  
Old April 18th 06, 07:55 AM posted to microsoft.public.outlook.program_vba
Michael Bauer
external usenet poster
 
Posts: 435
Default extracting mailitem.body text to Excel columns

Am 16 Apr 2006 04:41:44 -0700 schrieb Junoon:

You can loop through the items with a For Each... and read their SenderName
property.

The easiest way to split the Body is to use the Split function. Split by
vbCRLF and it returns an array with one item for each row. You could then
look for the ":" in the array element with the Instr function and extract
the parts left and right from that with the Left and Mid functions.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.vbOffice.net --


Hi,

I am trying to Compare names in first column of excel sheet with
objitem.SenderName,. IF Found, then copy the mailitem.body text into 3
columns viz, Location, EmpID & Shift-Time.

The mailitem.body has 3 lines of data viz.,

Location: value
EmpID: value
Shift-Time: value

For Each Mailitem, i want to COMPARE the senderName, if found, then
SPLIT the mailitem.body text at every '/n' (enter), then compare the
Labels (e.g. Location) with the Column headers (e.g. Location) & then
dump the corresponding value of Labels under the respective columns.

Can anyone help ASAP!

  #3  
Old April 19th 06, 10:26 AM posted to microsoft.public.outlook.program_vba
Junoon
external usenet poster
 
Posts: 27
Default extracting mailitem.body text to Excel columns

hi Michael,

1] Yes i have looped thru the items using For Each...& able get the
mailitem.sendername (but with a Security dialog 1st time)....
but my main area of concern is to use the Split function & instr
functions.....
i am not able to split the lines & then compare....i am NEW to this....

Also, its possible that the persons mailing me would create empty lines
below, not necessary that they would write the above details on each
single line one below the other......for e.g. the 1st label: Location,
is an address label......

So a person could write his complete address in more than one lines &
also create a empty line space below the 1st label & start of with next
label....

like this.....

Location: 25, Evershine Apts,
Shining Lane,
Brightness City,
Malaysia- 400000

EmpID: 344654

Shift Time: 18:30-6:30

also, as per what you say, to search for ":" in the body, then Shift
Time would be again broken into Shift Time, 18,30,6,30..........i dont
know how to do that...

I just need the code to parse the Body properly & get the data into the
right header columns in Excel.

2] Also, if you look at my previous post.....you will get the code
(which is without the body parsing code)....

"Voting Buttons & Excel " in
microsoft.public.outlook.program_vba..........

3] since i am using voting buttons to get Drop time requests from
people, whenever i send a Voting mail (Drop time request mail), you
know that, whenever someone clicks on any of the voting button, you get
a dialog, which give 2 options, a) Send the response now, b) Edit the
response.....
The person choses b) Edit the response & then has to enter the above
data ie.
Location, EmpID, Shift Time.....
Is it possible to Send a mail with Voting buttons & a small 2 column -
Table
, wherein, person enters the data first into the table & then clicks on
the Voting Button of his choice (Drop Time buttons).....

4]Lastly, each persons Outlook mail address properties shows his EmpID
& other details.....How do i extract these from the person's
mail....????What is the Command or statement in the For Each...Next
loop.....

PLEASE HELP ME WITH THESE ASAP!

  #4  
Old April 20th 06, 06:45 AM posted to microsoft.public.outlook.program_vba
Michael Bauer
external usenet poster
 
Posts: 435
Default extracting mailitem.body text to Excel columns

Am 19 Apr 2006 01:26:39 -0700 schrieb Junoon:

Simple sample for the Split function:

Dim v() as string
v=Split(MailItem.Body, vbCRLF)

v is now an array with one element for each row in the mail´s body. You can
loop though that array with:

Dim i as Long
For i=0 To UBound(v)
' do here somethign with v(i)
Next

If v(i)="" then skip that.

For the rest: There´s no single function to solve what you are looking for.
All you need (and can use) are the functions Instr, Left, Right and Mid.
They all are very good explained in the VBA help.

I.e. you need to know what you are looking for. E.g. if you find one line
starting with Shift Time then you know that a time formatted string follows.
Then again you must use the mentioned functions to extract the time before
the hyphen and the one after it.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.vbOffice.net --


hi Michael,

1] Yes i have looped thru the items using For Each...& able get the
mailitem.sendername (but with a Security dialog 1st time)....
but my main area of concern is to use the Split function & instr
functions.....
i am not able to split the lines & then compare....i am NEW to this....

Also, its possible that the persons mailing me would create empty lines
below, not necessary that they would write the above details on each
single line one below the other......for e.g. the 1st label: Location,
is an address label......

So a person could write his complete address in more than one lines &
also create a empty line space below the 1st label & start of with next
label....

like this.....

Location: 25, Evershine Apts,
Shining Lane,
Brightness City,
Malaysia- 400000

EmpID: 344654

Shift Time: 18:30-6:30

also, as per what you say, to search for ":" in the body, then Shift
Time would be again broken into Shift Time, 18,30,6,30..........i dont
know how to do that...

I just need the code to parse the Body properly & get the data into the
right header columns in Excel.

2] Also, if you look at my previous post.....you will get the code
(which is without the body parsing code)....

"Voting Buttons & Excel " in
microsoft.public.outlook.program_vba..........

3] since i am using voting buttons to get Drop time requests from
people, whenever i send a Voting mail (Drop time request mail), you
know that, whenever someone clicks on any of the voting button, you get
a dialog, which give 2 options, a) Send the response now, b) Edit the
response.....
The person choses b) Edit the response & then has to enter the above
data ie.
Location, EmpID, Shift Time.....
Is it possible to Send a mail with Voting buttons & a small 2 column -
Table
, wherein, person enters the data first into the table & then clicks on
the Voting Button of his choice (Drop Time buttons).....

4]Lastly, each persons Outlook mail address properties shows his EmpID
& other details.....How do i extract these from the person's
mail....????What is the Command or statement in the For Each...Next
loop.....

PLEASE HELP ME WITH THESE ASAP!

 




Thread Tools
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
Paste cells from Excel into message body goshute Outlook and VBA 1 March 29th 06 07:02 AM
Export Calendar from outlook to Excel with Dates in columns Andreb Outlook - Calandaring 1 March 21st 06 08:14 PM
Read body of MailItem ? Trey Shaffer Outlook and VBA 1 March 18th 06 08:56 PM
How can I create a MailItem that displays like a received MailItem ? Clive Outlook - Using Forms 0 February 27th 06 05:14 PM
Extracting email body (only last one) rg Outlook and VBA 1 February 27th 06 07:17 AM


All times are GMT +1. The time now is 02:13 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2008 Outlook Banter, part of the NewsgroupBanter project.
The comments are property of their posters.
Credit Cards - Personal Finance - Online Advertising - Debt Help - Loans