Outlook 2003 calendar events into Excel 2003?

  • Thread starter Thread starter Kolin Tregaskes
  • Start date Start date
K

Kolin Tregaskes

Hello,

I would like an Excel sheet that grabs my calendar events (i.e. to have a
list of my Outlook calendar events, such as people's Birthday's, in an Excel
sheet and updates whenever you open up the Excel sheet.

A lookup formula would be useful as I already have a list of the year's
dates with my hours worked, sunrise and last's average temperatures for each
day.

Is this possible in some way?

Kol
 
Hi there,

Thanks for the link, I get a runtime error when I click on the button. Do
you have an example for Calendar import? Sorry, not a programmer.

Kol
 
http://HelpExcel.com

Following is some example code

Sub getOutlook()
Set myOLAPP = CreateObject("Outlook.Application")

Set mynamespace = myOLAPP.GetNamespace("MAPI")
Set myaddresslist = mynamespace.Folders(1).Folders("Calendar").Items

For Each strItem In myaddresslist
shtImport.Range("a2").Offset(r) = strItem.Subject
r = r + 1

Next

Set oOL = Nothing
End Sub

The only way I know of to create an active link between Outlook & Excel is
programmatic.
 
Hi again,

Thanks for your reply, but this is just Latin to me, sorry. What would I do
with this code?

Does anyone else have any suggestions please?

Kol
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top