Using Excel to Create Outlook Calendar Meeting

WarrenCarr

New Member
Joined
Apr 4, 2017
Messages
23
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
Hello,

I would like to integrate Outlook and Excel. I have a workbook that I use to keep track of clients and prospects. It keeps track of where they are in the sales process. When they get to a point that they want to have a meeting, I have to manually mark the day in Outlook to make a reminder of when it is. I want to be able to tell Excel the follow up date and have it automatically make a meeting and/or task in Outlook. I can then look at outlook's calendar for the day and know which prospects need to be contacted.

Is there any way to do this? If any additional info is need, please let me know.

Thanks,
WC
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
An example:

Code:
' sheet module
Private Sub Worksheet_Change(ByVal Target As Range)
Dim oi As Object, ra, oa, resa As Recipient, olapp As Outlook.Application
If Target.Column = 5 And IsDate(Target) Then                            ' monitor column E for dates
    Set olapp = CreateObject("Outlook.Application")
    Set oi = olapp.CreateItem(olAppointmentItem)
    oi.MeetingStatus = olMeeting
    oi.Subject = "Strategy Meeting"
    oi.Location = CStr([a1].Value)
    oi.Start = CDate(Target) + CDate("1:30:00 PM")
    oi.Duration = 90
    Set ra = oi.Recipients.Add(Target.Offset(, -2))
    ra.Type = olRequired
    Set oa = oi.Recipients.Add(Target.Offset(, -1))
    oa.Type = olOptional
    Set resa = oi.Recipients.Add(CStr([a1]))
    resa.Type = olResource
    oi.Display
End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,487
Members
448,967
Latest member
visheshkotha

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