+ Reply to Thread
Results 1 to 13 of 13

Send Task to Outlook from Excel

Hybrid View

  1. #1
    Registered User
    Join Date
    08-07-2014
    Location
    Hudson Valley, NY
    MS-Off Ver
    2010, 2013
    Posts
    15

    Re: Send Task to Outlook from Excel

    Hi I realize this is a VERY old thread but it's still open so here's my question. I used the above code from DokeyOte and it worked great with Outlook 2010. Now I'm editing it at home where I have Outlook 2013 and as soon as I try to run the macro it stops at .subject and says Method 'Subject' of object '_TaskItem' failed I have already gone into Tools - References and added the Microsoft Outlook version.

    Below is the code exactly as I have it. And also while I'm here just another quick dumb question: How can I add more than one cell from different columns to the subject line? I need several Headings to be included in the subject like Name, Report, etc. Thanks!!!

    Sub NewTask()
        
        With CreateObject("Outlook.Application").CreateItem(3)
            .Subject = Cells(2, "A")
            .StartDate = Now
            .DueDate = Cells(2, "E")
            .ReminderSet = True
            .ReminderTime = .DueDate - 3 + TimeValue("8:30AM")
            .Body = Cells(2, "B") & vbNewLine & vbNewLine & Cells(2, "C")
            .Save
        End With
    
    End Sub

  2. #2
    Registered User
    Join Date
    08-07-2014
    Location
    Hudson Valley, NY
    MS-Off Ver
    2010, 2013
    Posts
    15

    Re: Send Task to Outlook from Excel

    Ok I just realized I figured out how to add more cells to a subject because I did it with the body. Just add &. If I'm wrong please correct me. It's been months since I created this file and I forgot how it works.

    But still need help with the debug message please! Thanks!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1