Tasks and Excel

  • Thread starter Thread starter Guest
  • Start date Start date
Absolutely. Creating a TaskItem is as simple as this (sorry if you already
know this part):

Dim myOlApp As Object, myItem As TaskItem

Set myOlApp = CreateObject("Outlook.Application")
Set myItem = myOlApp.CreateItem(olTaskItem)

Reading the Excel data through automation is out of scope for this forum
though. However, see this page (and the "From Sue's book" section: Listing
24.4 -- Create New Contacts from Data in an Excel Worksheet should be a good
sample to learn from) for some code examples that could help you.

Import and Exporting Data from Custom Microsoft Outlook Forms:
http://www.outlookcode.com/d/customimport.htm
 

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