Search results

  1. J

    Create new outlook task into task subfolder using vba

    Excellent! That did the trick! Thank you so much. And for anyone else out there looking for a thread confirming the code that works, here it is: Sub AddTaskToSubFolder() 'Add a task to a subfolder under the Tasks folder in Outlook Dim objApp As Outlook.Application Dim...
  2. J

    Create new outlook task into task subfolder using vba

    Do you mean MY code worked for you in Outlook (in other words, you copied my code, pasted in VBA and ran it)? If so, them maybe there is hope. To answer your question about the custom folder, yes. It exists under the default Tasks folder. It is strange because in all the various forum...
  3. J

    Create new outlook task into task subfolder using vba

    Does not work. :( Still saves to the default top Tasks folder. I am wondering if this is even possible for Tasks. Here's my code: Sub AddTaskToSubFolder() Dim objApp As Outlook.Application Dim defaultTasksFolder As Outlook.MAPIFolder Dim subFolder As Outlook.MAPIFolder Dim...
  4. J

    Create new outlook task into task subfolder using vba

    I have been searching for a way to create a new outlook task in an outlook task subfolder in Outlook 2007 for a few days now and no one seems to have finished any thread with a confirmed solution. Has anyone been able to do this and if so what code did you use to get it to work? Thanks, Jim
Back
Top