Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Kolin Tregaskes
 
Posts: n/a
Default Outlook 2003 calendar events into Excel 2003?

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


  #2   Report Post  
galimi
 
Posts: n/a
Default

Kolin,

I have posted an example of how to navigate the Outlook Object Model to:

http://www.Galimi.com/Examples/Outlook.xls

http://HelpExcel.com

"Kolin Tregaskes" wrote:

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



  #3   Report Post  
Kolin Tregaskes
 
Posts: n/a
Default

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


"galimi" wrote in message
...
Kolin,

I have posted an example of how to navigate the Outlook Object Model to:

http://www.Galimi.com/Examples/Outlook.xls

http://HelpExcel.com

"Kolin Tregaskes" wrote:

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





  #4   Report Post  
galimi
 
Posts: n/a
Default

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.

"Kolin Tregaskes" wrote:

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


"galimi" wrote in message
...
Kolin,

I have posted an example of how to navigate the Outlook Object Model to:

http://www.Galimi.com/Examples/Outlook.xls

http://HelpExcel.com

"Kolin Tregaskes" wrote:

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






  #5   Report Post  
Kolin Tregaskes
 
Posts: n/a
Default

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


"galimi" wrote in message
...
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.

"Kolin Tregaskes" wrote:

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


"galimi" wrote in message
...
Kolin,

I have posted an example of how to navigate the Outlook Object Model
to:

http://www.Galimi.com/Examples/Outlook.xls

http://HelpExcel.com

"Kolin Tregaskes" wrote:

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








Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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 2003 FAILS, but Excel 2000 SUCCEEDS ??? Richard Excel Discussion (Misc queries) 2 May 13th 23 11:46 AM
Excel 2003 Calendar Pop-Up Add-In subseaguy Excel Discussion (Misc queries) 2 January 25th 05 10:19 PM
sharing/using/saving Excel 2002 files in Excel 2003 maze2009 Excel Discussion (Misc queries) 0 January 20th 05 07:27 PM
Excel 2000 file when opened in Excel 2003 generates errors? Doug Excel Discussion (Misc queries) 13 December 25th 04 10:20 PM
Excel 2002 vs Outlook 2003 Bill Clark Excel Discussion (Misc queries) 1 December 2nd 04 09:03 PM


All times are GMT +1. The time now is 04:56 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"