Outlook Appointments - Setting default text in message body

Status
Not open for further replies.

iandv

Member
Outlook version
Email Account
Exchange Server
Hi

In Outlook 2007/2010 is there a way to pre populate the message box (just under the end time box) when creating a new outlook appointment?

Many Thanks
 
You can use VBA - that is .body field. If you want every single appt you create to have the same information, you can use a custom form.

Paste this in the VBA editor and run it - only appt created via the macro will have something in the body field.

Code:
Sub newappt() 
 
Dim cAppt As AppointmentItem 
 
Set cAppt = Application.CreateItem(olAppointmentItem) 
 
With cAppt
   .Subject = "New: "
   .Start = Now() + 0.125 'fraction of a day
   .Duration = 130 'minutes
   .Location = "Somewhere, over the rainbow"
   .Body = "Making a new appt!"
   .Display 
 
End With 
 
End Sub
 
Thanks

Will this work with macros turned off? As on our Intranet I think macros are off by default.

And by including this vb code how could you replicate this across certain users in the domain for this shared calendar?
 
No, it won't work if you can't use macros. Sorry.

You'd need to add it to each person's Outlook.

For a shared calendar, you could use a custom form published to the shared calendar folder and set as the default form for that folder. It should work for all users.
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
B Outlook Calendar/setting appointments Using Outlook 1
A Can't stop Outlook.com from setting reminders on appointments? Using Outlook.com accounts in Outlook 3
Kika Melo Outlook Calendar deleted appointments not in Deleted Items folder Using Outlook 3
e_a_g_l_e_p_i Outlook 2021 all appointments not showing in calendar Using Outlook 2
O Export Outlook calendar appointments by filters and date range Outlook VBA and Custom Forms 1
R Outlook 2007 only loads some appointments Using Outlook 0
M warning for too many appointments on a same day in Outlook Using Outlook 1
M Creating Outlook Appointments from Excel Cells Outlook VBA and Custom Forms 1
A Outlook.com changing appointments Using Outlook 8
R Outlook calendar appointments Free/Busy time is changing from "Busy" to "Free" Using Outlook 2
G Outlook does not show new appointments in To-Do-Bar Using Outlook 0
F Outlook 2007 Calendar Appointments not in Outlook Today view Using Outlook 11
N Outlook Shared appointments automatically to Private Calendar Using Outlook 1
A Synchronize Access Table with Outlook Calendar Appointments Outlook VBA and Custom Forms 3
C Appointments from Excel to Outlook Using Outlook 3
N Outlook 2010 Archived Appointments Missing Using Outlook 5
W Outlook 2010 - Displaying Private Appointments In Shared Calendars Using Outlook 1
T Synchronize outlook appointments through web application. Using Outlook 1
R Outlook Macros for Appointments and Tasks Using Outlook 1
D Priting only Recurring Appointments in Outlook Calendar 2010 Using Outlook 1
G Can't see all my appointments on Outlook calendar Using Outlook 2
M Change Meetings to Appointments in Outlook 2003 Using Outlook 6
M Outlook Calendar Monthly View Missing Appointments Using Outlook 3
B Outlook 2010 People Pane doesn't display appointments Using Outlook 2
F Outlook 2007 - recurring appointments shifted by one day Using Outlook 4
M Outlook - Search Criteria for Overdue Appointments Using Outlook 3
R outlook 2010 calendar appointments Using Outlook 2
L Fresh Install of Windows 11, saved previous image, how to retrieve Outlook Contacts Using Outlook 10
C Can't Use Custom Contact form in Outlook Classic since early January 2026 Outlook VBA and Custom Forms 7
e_a_g_l_e_p_i Need help updating email in Outlook 2021 Using Outlook 10
V Outlook spam filter misbehaving Using Outlook 9
L what are the downsides of running both classic and new outlook on same win 11 pc? Using Outlook 2
P Preventing permanent deletions in Outlook on the Web Using Outlook 0
L any trick to embedding images in new outlook and outlook on the web contacts? Using Outlook 4
L new outlook contacts searching Using Outlook 5
R Outlook 2010 Outlook 2010 migration question Using Outlook 2
W New Outlook PEOPLE blank Using Outlook 6
C New Outlook issues with Gmail, particularly labels/folders Using Outlook 3
E What is the next workaround for macro in New Outlook 1.2025.1111.100 Outlook VBA and Custom Forms 3
E Need to digitally sign macro but VBA\Outlook crash Outlook VBA and Custom Forms 4
P Outlook 2003 no longer opens "without" Folder List Showing in Navigation Pane Using Outlook 2
Hornblower409 Outlook 2010 - Never ending update Using Outlook 0
V Outlook created new profile? Using Outlook 1
J Outlook inbox question Using Outlook 4
T How to Add AT&T Contacts to Outlook 365 Using Outlook 5
F Outlook 2021 outlook on iPhone Using Outlook 1
F Outlook 2021 Outlook on iPhone asks for password Using Outlook 0
P ics calendar entries suddenly open up new Outlook Using Outlook 3
P Outlook "forgets" password until system rebooted Using Outlook 2
N Why does Outlook keeping adding to the email address I have in my notes portion of a contact? Using Outlook 2

Similar threads

Back
Top