Use VBA Excel userform to create an annual recurring appointment in Microsoft outlook

Meat4grinder

Board Regular
Joined
May 20, 2012
Messages
66
TRying to make a simple Appointment that is recurring annually in outlook.

Need the code to include
Subject - userform (clientname)
Location - userform (Address)
all day event
mark as unbusy
Body - Multiple userform entry (Phone number-email-description)
categorize orange Name of it is "Annual Service"
recurrance - yearly from date of creation
(would be great if i can have it automatically choose first monday of that specific month)


found some code online but have no clue what its referring to and even how to put it together.

Any help would be great.
 
Last edited:

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Well got it semi working i can not get it to send idk why but this is in VBA Excel book

Code:
Private Sub CommandButton1_Click()
 Dim oAppt As AppointmentItem
 Dim oPattern As RecurrencePattern
 
 Set MyOLApp = CreateObject("Outlook.application")
 Set oAppt = MyOLApp.CreateItem(olAppointmentItem)
 Set oPattern = oAppt.GetRecurrencePattern
 
 
 
        With oPattern
           
           ' Appointment occurs every n-th year (with n indicated by the Interval property).
           .RecurrenceType = olRecursYearNth
           ' Appointment occurs on Monday.
           .DayOfWeekMask = olMonday
           ' Appointment occurs in June.
           .MonthOfYear = Month(Date)
           ' Appointment occurs on week generated
           .Instance = GetCalendarTypeMonthWeek(Now - 1)
           ' Appointment occurs three times.
           .Occurrences = 10
           ' Appointment lasts for 180 minutes each time.
           .Duration = 0
           ' Appointment becomes effective on June 1, 2009.
           .PatternStartDate = (Date)
           ' Appointment starts at 2 P.M.
           .StartTime = #8:00:00 AM#
           ' Appointment ends at 5 P.M.
           .EndTime = #8:00:00 AM#
           ' Appointment recurs every 2 years (per a RecurrenceType of olRecursYearNth).
        End With
    oAppt.Subject = "Recurring every 1 year YearNth Appointment"
    oAppt.Location = "Here"
    oAppt.Body = "more information here"
    oAppt.Categories = "Annual Service"
    oAppt.OptionalAttendees = "me@hotmail.com" 'Change the email addy  i can not get it to send yet idk why
    oAppt.AllDayEvent = True
    oAppt.ResponseRequested = True
    oAppt.Display
    oAppt.Send
End Sub


Function GetCalendarTypeMonthWeek(dt As Date) As String


    Dim lngDayOfMonth As Long
    Dim lngWeekDay As Long
    Dim dtFirstDayOfMonth As Date
    Dim lngFactor As Long


    lngDayOfMonth = Day(dt)
    lngWeekDay = Weekday(dt, vbSunday) '<~~ Sunday=1, Monday=2, etc


    'does month start on Sunday?
    dtFirstDayOfMonth = DateValue("01-" & Month(dt) & "-" & Year(dt))
    If Weekday(dtFirstDayOfMonth, vbSunday) = 1 Then
        lngFactor = 1
    Else
        lngFactor = 2
    End If


    'get calendar week number for date
    GetCalendarTypeMonthWeek = CStr(Int((lngDayOfMonth - lngWeekDay) / 7) + lngFactor)


End Function
 
Upvote 0
One more addition i need done i would like this to go to a specific calender call it (Test Calender)


Any help in finishing up this would be great.
 
Upvote 0
Ok i got it working now with automatic sending.

Still can not figure out this to go to a specific calender, someone please help.

Code:
Sub EmailClient()


Dim O As Outlook.Application
Dim OAPT As Outlook.Appointmentitem
Dim oPattern As RecurrencePattern




Set O = New Outlook.Application
Set OAPT = O.CreateItem(olAppointmentitem)
Set oPattern = OAPT.GetRecurrencePattern




        
OAPT.MeetingStatus = olmeeting


        With oPattern
           ' Appointment occurs every n-th year (with n indicated by the Interval property).
           .RecurrenceType = olRecursYearNth
           ' Appointment occurs on Monday.
           .DayOfWeekMask = olSunday
           ' Appointment occurs in June.
           .MonthOfYear = Month(Date)
           ' Appointment occurs on week generated
           .Instance = GetCalendarTypeMonthWeek(Now - 1)
           ' Appointment occurs three times.
           .Occurrences = 20
           ' Appointment lasts for 180 minutes each time.
           .Duration = 0
           ' Appointment becomes effective on June 1, 2009.
           .PatternStartDate = DateAdd("yyyy", 1, (Date))
           ' Appointment starts at 2 P.M.
           .StartTime = #8:00:00 AM#
           ' Appointment ends at 5 P.M.
           .EndTime = #8:00:00 AM#
           ' Appointment recurs every 2 years (per a RecurrenceType of olRecursYearNth).
        End With
    With OAPT
        .Subject = "Annual Service for Overhead door Reminder for " & Me.TB_Name.Value
        .Location = Me.TB_Address.Value & ". " & Me.TB_City
        .Body = "Respond to this email and confirm service for this reminder.  Without the confirmation service will not be scheduled" & vbNewLine _
                & "Phone: " & Me.TB_Phone.Value & vbNewLine _
                & "Cell: " & Me.TB_Cell.Value & vbNewLine _
                & Me.TB_Description.Value
        .Categories = "Annual Service"
        .OptionalAttendees = Me.TB_Email.Value
        .AllDayEvent = True
        .ResponseRequested = True
        .display
        '.Send
    End With


End Sub
 
Upvote 0

Forum statistics

Threads
1,214,914
Messages
6,122,211
Members
449,074
Latest member
cancansova

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top