Results 1 to 2 of 2

Thread: How to do Reminder Date from xls to Outlook calendar

  1. #1
    Join Date
    Mar 2012
    Posts
    1

    question How to do Reminder Date from xls to Outlook calendar

    Hi folks,
    I need a little help how to have reminder date from Excel xls into Outlook calendar.
    It might be simple but our office IT guys couldn’t figure out so I need some help... I created a sample xls file with proper columns – attached. I am not a programmer so I am trying to figure out how to have automatic reminders 3 days before the “Start Date” which will be different for each item and there will be thousands of items on this list.

    I appreciate your help.
    Thanks
    Attached Files Attached Files

  2. #2
    Join Date
    Jul 2011
    Posts
    440

    Re: How to do Reminder Date from xls to Outlook calendar

    This can be done only through macro. It is possible to set a reminder date to outlook via excel. Below is a sample code that you can try to run in your Excel file. I hope this will work.

    Code:
    Sub Outlook_Appointment()
    
    Dim olApp As Outlook.Application
    
    Dim olAppItem As Outlook.AppointmentItem
    
    Set olApp = GetObject("", "Outlook.Application")
    
    Set olAppItem = olApp.CreateItem(olAppointmentItem)
    
    With olAppItem
    
    .Start = Range("'Out_App'!A6").Value
    
    .Subject = Range("'Out_App'!B6").Value
    
    .Duration = 1
    
    .ReminderSet = True
    
    .Save
    
    End With
    
    End Sub

Similar Threads

  1. Replies: 1
    Last Post: 28-04-2011, 07:21 PM
  2. Unable to see Outlook/Calendar reminder pop-ups
    By Livingsky in forum Windows Software
    Replies: 1
    Last Post: 08-03-2011, 10:20 PM
  3. Calendar View reminder does not pop up on desktop at startup
    By Strangers in forum Windows Software
    Replies: 5
    Last Post: 23-12-2010, 10:50 PM
  4. How to get a pop up reminder in Windows Live Calendar
    By Vaikuntam in forum Technology & Internet
    Replies: 4
    Last Post: 21-12-2010, 11:29 PM
  5. Calendar and Event Reminder
    By Otilio in forum Windows Software
    Replies: 5
    Last Post: 27-11-2009, 04:30 PM

Tags for this Thread

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
  •  
Page generated in 1,713,510,424.72766 seconds with 18 queries