Go Back   Trackpads Community > General Discussions > Computer and Technology > Microsoft Applications

Microsoft Applications Discussions about Windows and other MS Products such as Office

Reply
 
LinkBack Thread Tools
Old 06-16-2004, 00:44   #1 (permalink)
OVS
Civilians

 
Default Excel, Outlook integration

I writing this on behalf of someone who needs to integrate information
between Excel and Outlook.

What he wants is for outlook to 'take' the due date of rental income from
an Excel worksheet and place it in the Calender of Outlook.

Is this possible?

thank you

 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Trackpads Information
Click to Visit
Old 06-16-2004, 00:45   #2 (permalink)
Ninnie von Mentzer
Civilians

 
Default Re: Excel, Outlook integration

Put this in the Outlook newsgroup!


"OVS" <aqpnSPremoveAM83@dsl.pipex.com> wrote in message
news:1hl7frinopo80$.1jqcs9qj5hmo2$.dlg@40tude.net. ..
> I writing this on behalf of someone who needs to integrate information
> between Excel and Outlook.
>
> What he wants is for outlook to 'take' the due date of rental income from
> an Excel worksheet and place it in the Calender of Outlook.
>
> Is this possible?
>
> thank you
>



 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-16-2004, 00:45   #3 (permalink)
Dave Hawley
Civilians

 
Default Re: Excel, Outlook integration

Please excuse Ninnie. If you post to the Outlook Newsgroup you will
probably be yelled at to post in the Excel Newsgroup.

If you go here:
http://www.ozgrid.com/forum/forumdisplay.php?fid=10

You can post your question. Just register here first:
http://www.ozgrid.com/forum/member.php?action=reg

***** Posted via: http://www.ozgrid.com
Excel Templates, Training & Add-ins.
Free Excel Forum http://www.ozgrid.com/forum *****
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-16-2004, 00:45   #4 (permalink)
OVS
Civilians

 
Default Re: Excel, Outlook integration

On 30 Mar 2004 11:43:38 GMT, Dave Hawley wrote:

> Please excuse Ninnie. If you post to the Outlook Newsgroup you will
> probably be yelled at to post in the Excel Newsgroup.
>
> If you go here:
> http://www.ozgrid.com/forum/forumdisplay.php?fid=10
>
> You can post your question. Just register here first:
> http://www.ozgrid.com/forum/member.php?action=reg
>
> ***** Posted via: http://www.ozgrid.com
> Excel Templates, Training & Add-ins.
> Free Excel Forum http://www.ozgrid.com/forum *****


Thanks Dave, I'll give the link you gave a go.
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-16-2004, 00:47   #5 (permalink)
Rollin_Again
Civilians

 
Default Re: Excel, Outlook integration

This requires some knowledge of VBA. Here is some Code to help get you
started. You will probably need to modify my code for your specific
needs (loops, if statements, etc.) The code below assumes that you
have the RENT DUE DATE in Cell A2 of the worksheet, The PROPERTY
DESCRIPTION in Range B2, and the AMOUNT DUE in Range C2. Each new
appointment date that is created uses a date variable which will change
depending on the cell value in the workbook (Column A) but has a hard
coded start time of 12:00 pm for all appointments. Good luck and just
let us know if you need any more help!

YOU WILL NEED TO ADD REFERENCE TO MICROSOFT OUTLOOK OBJECT LIBRARY IN
YOUR EXCEL PROJECT!!!

Dim oApp As Object
Dim oNameSpace As NameSpace
Dim oFolder As Object
Dim myItem As AppointmentItem
Dim vDate As String
Dim vProperty As String
Dim vRent As String

Public Sub AddApointments()

vDate = Range("A2").Value
vProperty = Range("B2").Value
vRent = Range("C2").Value

Set oApp = New Outlook.Application
Set oNameSpace = oApp.GetNamespace("MAPI")

Set oFolder = oNameSpace.Folders(2).Folders("calendar")
Set myItem = oApp.CreateItem(olAppointmentItem)

myItem.Subject = "Rent Due for " & vProperty & " $" & vRent
myItem.Start = vDate & " 12:00:00 PM"
myItem.Duration = 90
myItem.Save


End Sub






Rollin


---
Message posted from http://www.ExcelForum.com/

 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-16-2004, 00:47   #6 (permalink)
OVS
Civilians

 
Default Re: Excel, Outlook integration

On Tue, 30 Mar 2004 1400 -0600, Rollin_Again wrote:

> This requires some knowledge of VBA. Here is some Code to help get you
> started. You will probably need to modify my code for your specific
> needs (loops, if statements, etc.) The code below assumes that you
> have the RENT DUE DATE in Cell A2 of the worksheet, The PROPERTY
> DESCRIPTION in Range B2, and the AMOUNT DUE in Range C2. Each new
> appointment date that is created uses a date variable which will change
> depending on the cell value in the workbook (Column A) but has a hard
> coded start time of 12:00 pm for all appointments. Good luck and just
> let us know if you need any more help!
>
> YOU WILL NEED TO ADD REFERENCE TO MICROSOFT OUTLOOK OBJECT LIBRARY IN
> YOUR EXCEL PROJECT!!!
>
> Dim oApp As Object
> Dim oNameSpace As NameSpace
> Dim oFolder As Object
> Dim myItem As AppointmentItem
> Dim vDate As String
> Dim vProperty As String
> Dim vRent As String
>
> Public Sub AddApointments()
>
> vDate = Range("A2").Value
> vProperty = Range("B2").Value
> vRent = Range("C2").Value
>
> Set oApp = New Outlook.Application
> Set oNameSpace = oApp.GetNamespace("MAPI")
>
> Set oFolder = oNameSpace.Folders(2).Folders("calendar")
> Set myItem = oApp.CreateItem(olAppointmentItem)
>
> myItem.Subject = "Rent Due for " & vProperty & " $" & vRent
> myItem.Start = vDate & " 12:00:00 PM"
> myItem.Duration = 90
> myItem.Save
>
>
> End Sub


wow, thanks for that Rollin. From first glance it looks way beyond my
knowledge! But it does look very interesting. Hopefully I'll be able to at
least give it a go.


Thanks again

 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-16-2004, 00:47   #7 (permalink)
Rollin_Again
Civilians

 
Default Re: Excel, Outlook integration

No problem. I can help you go through all the steps if you need. It
really shouldn't take but a few minutes to accomplish what you want.
Can you post a portion of the Excel Workbook so I can see the exact
format of each of the records? It's not really that hard and I don't
mind helping so don't worry....that's what these forums are for


Rollin


---
Message posted from http://www.ExcelForum.com/

 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel with Outlook Express SURESH Microsoft Applications 1 08-16-2005 08:00
Project 2003 integration with Outlook 2003 =?Utf-8?B?U3RldmUgRnJhbmtsaW4=?= Microsoft Applications 1 01-14-2005 16:00
Project & Outlook Integration Mike Microsoft Applications 2 06-16-2004 17:49
2000 : Integration with Outlook 2003 gav Microsoft Applications 1 06-16-2004 15:57
using Excel and Outlook Express ross Microsoft Applications 3 06-16-2004 02:57


Community Information
Options
Quick Options
Trackpads Non-Commercial Ad
Copyright Information Click to Visit
Time
Server Time
All times are GMT -4. The time now is 13:33.
Copyright
Copyright Information
The header is based off of work by Vipixel.com and modified by this site. Trackpads and the Trackpads Logo are both Registered Trademarks of Jason Edwards and cannot be used without prior written permission.  The only exception is as a link back to this site. Trackpads is a private website run by a small legion of volunteers, 3 dogs, 12.5 cats and an army of small, super smart, bio-engineered mice with pointy hats and tutu's. Search Engine Friendly URLs by vBSEO 3.2.0 RC7
Archive Links
Archive Links
Page generated in 0.93359 seconds with 19 queries