• Outlook User
  • New Outlook app
  • Outlook.com
  • Outlook Mac
  • Outlook & iCloud
  • Developer
  • Microsoft 365 Admin
    • Common Problems
    • Microsoft 365
    • Outlook BCM
    • Utilities & Addins

Change the All Day Event Default Free/Busy to "Busy"

Slipstick Systems

› Developer › Code Samples › Change the All Day Event Default Free/Busy to “Busy”

Last reviewed on December 1, 2017     4 Comments

The article How to Show Appointments as "Free" by Default shows how to change the default Free/Busy setting for appointments to Free. You can use the same method to change the default Free/Busy for All Day Events from Free to Busy. However, it's generally better to use a macro and set the Free/Busy state when the Event is opened or Saved to the Calendar because you have more control, but if you can't run a macro, you can use a custom form.

All Day Event

See the Tools section for a utility that sets the defaults for Free/Busy status and reminder time.

All New All Day Events are Busy

This macro sets the busy state when you open a new all day event. It checks for the creation date and does not change the busy state on existing events.

How to use the VBA Editor

' Based on //www.vboffice.net/en/developers/newinspector-and-inspector-activate
Private WithEvents m_Inspectors As Outlook.Inspectors
Private WithEvents m_Inspector As Outlook.Inspector
 
Private Sub Application_Startup()
  Set m_Inspectors = Application.Inspectors
End Sub
 
Private Sub m_Inspectors_NewInspector(ByVal Inspector As Outlook.Inspector)
  Set m_Inspector = Inspector
End Sub
 
Private Sub m_Inspector_Activate()
If TypeName(m_Inspector.CurrentItem) = "AppointmentItem" And _
  m_Inspector.CurrentItem.AllDayEvent = True And _
  m_Inspector.CurrentItem.CreationTime > Now Then
    m_Inspector.CurrentItem.BusyStatus = olBusy
End If
  Set m_Inspector = Nothing
End Sub

Set Busy State When Added to Calendar

The macro below sets all events that are assigned the Personal category as Busy when they are added to the calendar. It will not set birthdays and anniversaries that Outlook creates or imported Holidays as Busy.

If you only need some all day events marked busy and either always assign a specific category before saving or use a specific word in the subject, such as "vacation", you can use a macro to set the event to busy as it's saved.

To check for keywords in the subject use:

If Appt.AllDayEvent = True And InStr(1, LCase(Appt.Subject), "vacation") = True Then

Private WithEvents Items As Outlook.Items

Private Sub Application_Startup()
  Dim Ns As Outlook.NameSpace

  Set Ns = Application.GetNamespace("MAPI")
  Set Items = Ns.GetDefaultFolder(olFolderCalendar).Items
End Sub

Private Sub Items_ItemAdd(ByVal Item As Object)
  On Error Resume Next
  Dim Appt As Outlook.AppointmentItem

  If TypeOf Item Is Outlook.AppointmentItem Then

    Set Appt = Item

'Checks to see if all day
  If Appt.AllDayEvent = True And Appt.Categories = "Personal" Then
     Appt.BusyStatus = olBusy
     Appt.Save
    End If
End If
End Sub

Change other fields

If you need to set other fields, edit the If line. You'll need to keep the Creationtime = Now line, otherwise the changes will apply to any appointment you open, including existing appointments.

This sample snippet will create meetings every time you open a new appointment form, either using the New Appointment button or double clicking in any of the calendar views.

Private Sub m_Inspector_Activate()
If TypeName(m_Inspector.CurrentItem) = "AppointmentItem" And _
  m_Inspector.CurrentItem.CreationTime > Now Then
    m_Inspector.CurrentItem.MeetingStatus = olMeeting
End If

Create a Custom Form that defaults to Busy

If you can't use a macro, you can customize a form and change the default for All Day events to Busy. There are a few more "gotchas" when you do this for All Day Events:

If you use the New Items > All Day Event menu or right-click and select All Day Event, you'll create an event with Free/Busy marked Free.

If you set the form as the default for the folder, new (timed) appointments may have the All day event checkbox checked. The new appointments will have the selected times correct even though the all day box remains checked but the reminder will default to 18 hours unless the All day event box is unchecked.

Imported events, including Holidays, along with Birthdays and Anniversaries that are created automatically by Outlook will use the built-in default form, where all day events are marked Free.

  1. First, go to File, Options, Customize Ribbon and add a check to Developer ribbon on the right.
  2. Open the Calendar folder you want to publish the form in. This makes it easier to publish the form because it gets published to the folder you are "working" in.
  3. Open a new all day event by selecting a date in the month view then click the New button or double click on the date.
  4. Change the Show time as field to Busy.
  5. Publish the form using the Publish form command on the Developer ribbon
    Use the Publish form command on the Developer ribbon
  6. If you are working in the Calendar folder, Outlook Folders is the calendar, so you just need to enter a name for your form.
    publish the form to the calendar folder
  7. Set the new form as default for new appointments by right-clicking on the calendar folder, choose Properties and select the form from the dropdown to set it as default.
    Set the new form as the default for the folder

To create an all day event using this form, select a date in the month view and click the New button or double click on the date. Don't use the New Items > All Day Event menu or right-click and select All Day Event. This command will create an event with Free/Busy marked Free.

If you set the form as the default for the folder, all new appointments will default to All Day Events. However, when you create a new appointment in the day or week view, timed appointments will be created in the selected time period, even though the all day box remains checked. The reminder will default to 18 hours unless the All Day box is unchecked.

Imported events, including Holidays, along with Birthdays and Anniversaries that are created automatically by Outlook will use the built-in default form, where all days events will be marked Free.

How to use macros

First: You will need macro security set to low during testing.

To check your macro security in Outlook 2010 or 2013, go to File, Options, Trust Center and open Trust Center Settings, and change the Macro Settings. In Outlook 2007 and older, it’s at Tools, Macro Security.

After you test the macro and see that it works, you can either leave macro security set to low or sign the macro.

Open the VBA Editor by pressing Alt+F11 on your keyboard.

To put the code in a module:

  1. Right click on Project1 and choose Insert > Module
  2. Copy and paste the macro into the new module.

More information as well as screenshots are at How to use the VBA Editor

 

Tools

ADEtuning for Microsoft Outlook

ADEtuning allows users to set the default values for the All day event "Show as" status (Free/Tentative/Busy/Out of office) and the All day event reminder time. This COM Add-in is works with Microsoft Outlook 2010/2013/2016.

Change the All Day Event Default Free/Busy to "Busy" was last modified: December 1st, 2017 by Diane Poremsky

Related Posts:

  • Reminders are missing in Outlook Calendar
  • How to Show Appointments as "Free" by Default
  • Dismiss reminders for past calendar events
  • Use a Default Subject for New Messages

About Diane Poremsky

A Microsoft Outlook Most Valuable Professional (MVP) since 1999, Diane is the author of several books, including Outlook 2013 Absolute Beginners Book. She also created video training CDs and online training classes for Microsoft Outlook. You can find her helping people online in Outlook Forums as well as in the Microsoft Answers and TechNet forums.

Subscribe
Notify of
4 Comments
newest
oldest most voted
Inline Feedbacks
View all comments

Jennifer (@guest_202041)
October 3, 2016 11:53 am
#202041

Hello Diane!
Is there a way to make all time that is not specified with any appts. as "Out Of Office"?

0
0
Reply
Diane Poremsky(@diane-poremsky)
Author
Reply to  Jennifer
October 3, 2016 12:44 pm
#202042

you'd need to create appointments to fill in the space, otherwise outlook will treat it as free.

0
0
Reply
John (@guest_196070)
January 22, 2016 6:35 am
#196070

Hi Diane, can you tell me if there is a way when importing new events into outlook to have them show as Busy by default? Or if that's not possible then a way to convert them to busy once imported? Thanks!

0
0
Reply
Diane Poremsky(@diane-poremsky)
Author
Reply to  John
January 22, 2016 11:08 pm
#196087

if you are importing from csv, you can set it in the file before import. Or you can use the method here - https://www.slipstick.com/tutorial/how-to-easily-change-the-private-flag/ - add the modified time and show time as fields to the view, select all that have the current modified date and add a unique category. group by categories, then by show time as. change one imported item to busy, drag the rest to the busy group. Reset the view.

0
0
Reply

Visit Slipstick Forums.
What's New at Slipstick.com

Latest EMO: Vol. 30 Issue 16

Subscribe to Exchange Messaging Outlook






Support Services

Do you need help setting up Outlook, moving your email to a new computer, migrating or configuring Office 365, or just need some one-on-one assistance?

Our Sponsors

CompanionLink
ReliefJet
  • Popular
  • Latest
  • Week Month All
  • Use Classic Outlook, not New Outlook
  • How to Remove the Primary Account from Outlook
  • Disable "Always ask before opening" Dialog
  • This operation has been cancelled due to restrictions
  • Adjusting Outlook's Zoom Setting in Email
  • How to Hide or Delete Outlook's Default Folders
  • Reset the New Outlook Profile
  • Save Attachments to the Hard Drive
  • Outlook SecureTemp Files Folder
  • Add Attachments and Set Email Fields During a Mail Merge
  • Open Outlook Templates using PowerShell
  • Count and List Folders in Classic Outlook
  • Google Workspace and Outlook with POP Mail
  • Import EML Files into New Outlook
  • Opening PST files in New Outlook
  • New Outlook: Show To, CC, BCC in Replies
  • Insert Word Document into Email using VBA
  • Delete Empty Folders using PowerShell
  • Warn Before Deleting a Contact
  • Classic Outlook is NOT Going Away in 2026
Ajax spinner

Recent Bugs List

Microsoft keeps a running list of issues affecting recently released updates at Fixes or workarounds for recent issues in classic Outlook (Windows).

For new Outlook for Windows: Fixes or workarounds for recent issues in new Outlook for Windows .

Outlook for Mac Recent issues: Fixes or workarounds for recent issues in Outlook for Mac

Outlook.com Recent issues: Fixes or workarounds for recent issues on Outlook.com

Office Update History

Update history for supported Office versions is at Update history for Office

Outlook Suggestions and Feedback

Outlook Feedback covers Outlook as an email client, including Outlook Android, iOS, Mac, and Windows clients, as well as the browser extension (PWA) and Outlook on the web.

Outlook (new) Feedback. Use this for feedback and suggestions for Outlook (new).

Use Outlook.com Feedback for suggestions or feedback about Outlook.com accounts.

Other Microsoft 365 applications and services




New Outlook Articles

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Google Workspace and Outlook with POP Mail

Import EML Files into New Outlook

Opening PST files in New Outlook

New Outlook: Show To, CC, BCC in Replies

Insert Word Document into Email using VBA

Delete Empty Folders using PowerShell

Warn Before Deleting a Contact

Classic Outlook is NOT Going Away in 2026

Newest Code Samples

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Insert Word Document into Email using VBA

Warn Before Deleting a Contact

Use PowerShell to Delete Attachments

Remove RE:, FWD:, and Other Prefixes from Subject Line

Change the Mailing Address Using PowerShell

Categorize @Mentioned Messages

Send an Email When You Open Outlook

Delete Old Calendar Events using VBA

VBA Basics

How to use the VBA Editor

Work with open item or selected item

Working with All Items in a Folder or Selected Items

VBA and non-default Outlook Folders

Backup and save your Outlook VBA macros

Get text using Left, Right, Mid, Len, InStr

Using Arrays in Outlook macros

Use RegEx to extract message text

Paste clipboard contents

Windows Folder Picker

Custom Forms

Designing Microsoft Outlook Forms

Set a custom form as default

Developer Resources

Developer Resources

Developer Tools

VBOffice.net samples

SlovakTech.com

Outlook MVP David Lee

Repair PST

Convert an OST to PST

Repair damaged PST file

Repair large PST File

Remove password from PST

Merge Two Data Files

Sync & Share Outlook Data

  • Share Calendar & Contacts
  • Synchronize two computers
  • Sync Calendar and Contacts Using Outlook.com
  • Sync Outlook & Android Devices
  • Sync Google Calendar with Outlook
  • Access Folders in Other Users Mailboxes

Diane Poremsky [Outlook MVP]

Make a donation

Mail Tools

Sending and Retrieval Tools

Mass Mail Tools

Compose Tools

Duplicate Remover Tools

Mail Tools for Outlook

Online Services

Calendar Tools

Schedule Management

Calendar Printing Tools

Calendar Reminder Tools

Calendar Dates & Data

Time and Billing Tools

Meeting Productivity Tools

Duplicate Remover Tools

Productivity

Productivity Tools

Automatic Message Processing Tools

Special Function Automatic Processing Tools

Housekeeping and Message Management

Task Tools

Project and Business Management Tools

Choosing the Folder to Save a Sent Message In

Run Rules on messages after reading

Help & Suggestions

Submit Outlook Feature Requests

Slipstick Support Services

Buy Microsoft 365 Office Software and Services

Visit Slipstick Forums.

What's New at Slipstick.com

Home | Outlook User | Exchange Administrator | Office 365 | Outlook.com | Outlook Developer
Outlook for Mac | Common Problems | Utilities & Addins | Tutorials
Outlook & iCloud Issues | Outlook Apps
EMO Archives | About Slipstick | Slipstick Forums
Submit New or Updated Outlook and Exchange Server Utilities

Send comments using our Feedback page
Copyright © 2025 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.

wpDiscuz

Sign up for Exchange Messaging Outlook

Our weekly Outlook & Exchange newsletter (bi-weekly during the summer)






Please note: If you subscribed to Exchange Messaging Outlook before August 2019, please re-subscribe.

Never see this message again.

You are going to send email to

Move Comment