Dim outlookApp As Outlook.Application
'// Outlookアプリケーションを操作するための変数を宣言しています。
'// (変数名は、outlookAppでなくても問題ありません)
Set outlookApp = New Outlook.Application
'// 実際にOutlookアプリケーションを起動し、操作できるようにしています。
New ステートメントを使うと、Outlookアプリケーションのインスタンスをより高速に作成できます。
Dim outlookApp As Object
'// Outlookアプリケーションを操作するための変数を宣言しています。
'// (変数名は、outlookAppでなくても問題ありません)
Set outlookApp = CreateObject("Outlook.Application")
'// 実際にOutlookアプリケーションを起動し、操作できるようにしています。
Dim outlookApp As Outlook.Application
Dim ns As Outlook.Namespace
'// Outlookアプリケーションを取得
Set outlookApp = CreateObject("Outlook.Application")
'// Namespaceを取得
Set ns = outlookApp.GetNamespace("MAPI")
Dim recipient As Outlook.Recipient
Dim sharedCalendar As Outlook.MAPIFolder
Dim email As String
'// 他人のメールアドレスを指定
email = "someone@example.com"
'// 他人の予定表を取得
Set recipient = ns.CreateRecipient(email)
recipient.Resolve ' アドレスが正しいか確認
If recipient.Resolved Then
Set sharedCalendar = ns.GetSharedDefaultFolder(recipient, olFolderCalendar)
MsgBox "共有予定表のフォルダ名: " & sharedCalendar.Name
Else
MsgBox "指定されたメールアドレスのユーザーが見つかりません。"
End If
Dim appt As Object
Dim filteredItems As Outlook.Items
'// 特定期間内の予定を取得
Set filteredItems = items.Restrict("[Start] >= '2024/01/01' AND [Start] <= '2024/12/31'")
'// 取得した予定を列挙
For Each appt In filteredItems
If TypeOf appt Is Outlook.AppointmentItem Then
Debug.Print appt.Subject & " - " & appt.Start
End If
Next appt
If TypeOf appt Is Outlook.AppointmentItem Then '// 予定アイテムの場合のみ処理を実行 End If
スポンサーリンク
Outlookの予定表を取得するための5つのステップ
OutlookをVBAで操作する際、各オブジェクトは明確な役割を持ち、連携しながら動作します。
これらの関係を理解することで、より効率的にOutlookを操作できるようになります。
以下は基本的なオブジェクトの流れです。
STEP
Outlook.Application
→ Outlook全体を操作する基盤を作成します。
STEP
Namespace
→ Outlook内のデフォルトフォルダや他人の共有フォルダにアクセスします。
STEP
MAPIFolder
→ 必要なフォルダ(予定表、受信トレイなど)を選択します。
STEP
Items
→ 選択したフォルダ内のアイテム(予定、メールなど)をリスト形式で取得します。
STEP
AppointmentItem
→ 個別の予定を取得し、件名、日時、場所などの詳細を編集します。
VBAで予定表を取得する際の注意ポイント
Outlookの予定表をVBAで取得する際、いくつかのポイントに注意する必要があります。
これらを事前に確認しておくことで、エラーやトラブルを防ぎ、スムーズな操作が可能になります。
1. Outlookが起動していない
Outlookが起動していない場合、VBAコードの実行時にエラーが発生することがあります。
以下を確認して、問題を解消しましょう。
確認したいこと
Outlookアプリケーションが起動しているか確認。
起動していない場合は、VBAコード内でOutlook.Applicationを適切にセットアップ。
対処方法
On Error Resume Next
Set outlookApp = GetObject(, "Outlook.Application")
If outlookApp Is Nothing Then
Set outlookApp = CreateObject("Outlook.Application")
End If
On Error GoTo 0
Dim startDate As String
Dim endDate As String
startDate = Format(Date, "yyyy/mm/dd")
endDate = Format(Date + 7, "yyyy/mm/dd")
3. Excelのシートがない
データを書き込むExcelシートが存在しない場合、コードがエラーになることがあります。
シート名が正確であることを確認し、必要に応じてシートを自動作成する仕組みを追加しましょう。
確認したいこと
以下のコードでシートを確認し、なければ自動で作成するように設定します。
対処方法
Dim ws As Worksheet
On Error Resume Next
Set ws = ThisWorkbook.Sheets("予定表データ")
If ws Is Nothing Then
Set ws = ThisWorkbook.Sheets.Add
ws.Name = "予定表データ"
End If
On Error GoTo 0
Public Sub ExportOutlookAppointments()
Dim outlookApp As Outlook.Application
Dim ns As Outlook.Namespace
Dim calendarFolder As Outlook.MAPIFolder
Dim items As Outlook.Items
Dim filteredItems As Outlook.Items
Dim appt As Object
Dim ws As Worksheet
Dim startDate As String
Dim endDate As String
Dim i As Long
'// 日付範囲を指定
startDate = Format(Date, "yyyy/mm/dd") '// 現在の日付
endDate = Format(Date + 7, "yyyy/mm/dd") '// 現在から7日後
'// Outlookアプリケーションのセットアップ
Set outlookApp = CreateObject("Outlook.Application")
Set ns = outlookApp.GetNamespace("MAPI")
Set calendarFolder = ns.GetDefaultFolder(olFolderCalendar)
'// アイテムを取得し、フィルタリング
Set items = calendarFolder.Items
items.Sort "[Start]"
items.IncludeRecurrences = True
Set filteredItems = items.Restrict("[Start] >= '" & startDate & "' AND [Start] <= '" & endDate & "'")
'// Excelシートを準備
Set ws = ThisWorkbook.Sheets(1)
ws.Cells.Clear
ws.Cells(1, 1).Value = "件名"
ws.Cells(1, 2).Value = "開始日時"
ws.Cells(1, 3).Value = "終了日時"
ws.Cells(1, 4).Value = "場所"
ws.Cells(1, 5).Value = "詳細"
'// フィルタリング結果をExcelに出力
i = 2
For Each appt In filteredItems
If TypeOf appt Is Outlook.AppointmentItem Then
ws.Cells(i, 1).Value = appt.Subject
ws.Cells(i, 2).Value = appt.Start
ws.Cells(i, 3).Value = appt.End
ws.Cells(i, 4).Value = appt.Location
ws.Cells(i, 5).Value = appt.Body
i = i + 1
End If
Next appt
MsgBox "予定表のデータをExcelに出力しました。", vbInformation
'// オブジェクトの解放
Set appt = Nothing
Set filteredItems = Nothing
Set items = Nothing
Set calendarFolder = Nothing
Set ns = Nothing
Set outlookApp = Nothing
End Sub
Dim outlookApp As Outlook.Application Dim ns As Outlook.Namespace Dim calendarFolder As Outlook.MAPIFolder Dim items As Outlook.Items Dim filteredItems As Outlook.Items Dim appt As Object Dim ws As Worksheet Dim startDate As String Dim endDate As String Dim i As Long
Set outlookApp = CreateObject(“Outlook.Application”) Set ns = outlookApp.GetNamespace(“MAPI”) Set calendarFolder = ns.GetDefaultFolder(olFolderCalendar)
OutlookアプリケーションとNamespaceを初期化し、予定表フォルダにアクセスします。
Set items = calendarFolder.Items items.Sort “[Start]” items.IncludeRecurrences = True Set filteredItems = items.Restrict(“[Start] >= ‘” & startDate & “‘ AND [Start] <= ‘” & endDate & “‘”)
i = 2 For Each appt In filteredItems If TypeOf appt Is Outlook.AppointmentItem Then ws.Cells(i, 1).Value = appt.Subject ws.Cells(i, 2).Value = appt.Start ws.Cells(i, 3).Value = appt.End ws.Cells(i, 4).Value = appt.Location ws.Cells(i, 5).Value = appt.Body i = i + 1 End If Next appt
フィルタリングした予定を1件ずつExcelに出力します。 「If TypeOf appt Is Outlook.AppointmentItem」により、予定アイテムのみ処理します。
MsgBox “予定表のデータをExcelに出力しました。”, vbInformation
完了メッセージを表示します。
Set appt = Nothing Set filteredItems = Nothing Set items = Nothing Set calendarFolder = Nothing Set ns = Nothing Set outlookApp = Nothing
Public Sub ExportFilteredAppointmentsByKeyword()
On Error GoTo ErrorHandler
Dim outlookApp As Outlook.Application
Dim ns As Outlook.Namespace
Dim calendarFolder As Outlook.MAPIFolder
Dim items As Outlook.Items
Dim filteredItems As Outlook.Items
Dim appt As Object
Dim ws As Worksheet
Dim i As Long
Dim keyword As String
Dim startDate As String
Dim endDate As String
'// キーワードを指定
keyword = InputBox("取得する予定のキーワードを入力してください:", "キーワード指定", "会議")
If keyword = "" Then
MsgBox "キーワードが指定されていません。処理を中止します。", vbExclamation
Exit Sub
End If
'// 日付範囲を指定(現在から1か月後)
startDate = Format(Date, "yyyy-mm-dd")
endDate = Format(DateAdd("m", 1, Date), "yyyy-mm-dd")
'// Outlookアプリケーションのセットアップ
Set outlookApp = CreateObject("Outlook.Application")
Set ns = outlookApp.GetNamespace("MAPI")
Set calendarFolder = ns.GetDefaultFolder(olFolderCalendar) ' 参照設定が必要
'// アイテムを取得し、フィルタリング
Set items = calendarFolder.Items
items.Sort "[Start]"
items.IncludeRecurrences = True
'// 日付範囲でフィルタリング
Set filteredItems = items.Restrict("[Start] >= '" & startDate & "' AND [Start] <= '" & endDate & "'")
'// Excelシートを準備
Set ws = ThisWorkbook.Sheets(1)
ws.Cells.Clear
ws.Cells(1, 1).Value = "件名"
ws.Cells(1, 2).Value = "開始日時"
ws.Cells(1, 3).Value = "終了日時"
ws.Cells(1, 4).Value = "場所"
ws.Cells(1, 5).Value = "詳細"
'// キーワードでフィルタリングして出力
i = 2
For Each appt In filteredItems
If TypeOf appt Is Outlook.AppointmentItem Then
If InStr(1, appt.Subject, keyword, vbTextCompare) > 0 Then
ws.Cells(i, 1).Value = appt.Subject
ws.Cells(i, 2).Value = appt.Start
ws.Cells(i, 3).Value = appt.End
ws.Cells(i, 4).Value = appt.Location
ws.Cells(i, 5).Value = appt.Body
i = i + 1
End If
End If
Next appt
MsgBox "キーワード「" & keyword & "」を含む予定をExcelに出力しました。", vbInformation
'// オブジェクトの解放
Set appt = Nothing
Set filteredItems = Nothing
Set items = Nothing
Set calendarFolder = Nothing
Set ns = Nothing
Set outlookApp = Nothing
Exit Sub
ErrorHandler:
MsgBox "エラーが発生しました: " & Err.Description, vbCritical
End Sub
Dim outlookApp As Outlook.Application Dim ns As Outlook.Namespace Dim calendarFolder As Outlook.MAPIFolder Dim items As Outlook.Items Dim filteredItems As Outlook.Items Dim appt As Object Dim ws As Worksheet Dim i As Long Dim keyword As String Dim startDate As String Dim endDate As String
必要な変数を宣言します。
outlookApp : Outlookアプリケーションを操作するための変数。
ns : Namespaceオブジェクトで、Outlook内のデータ構造を表します。
calendarFolder : Outlook予定表フォルダを表す変数。
items : 予定表内のすべてのアイテムを管理するオブジェクト。
filteredItems : 条件を指定して絞り込んだアイテムを格納します。
appt : 個々の予定を表すオブジェクト。
ws : Excelシートを操作するための変数。
i : 出力する行を管理するためのカウンタ変数。
keyword : 検索条件となるキーワードを格納。
startDate / endDate : 予定を抽出する期間の開始日と終了日を表します。
keyword = InputBox(“取得する予定のキーワードを入力してください:”, “キーワード指定”, “会議”) If keyword = “” Then MsgBox “キーワードが指定されていません。処理を中止します。”, vbExclamation Exit Sub End If
Set outlookApp = CreateObject(“Outlook.Application”) Set ns = outlookApp.GetNamespace(“MAPI”) Set calendarFolder = ns.GetDefaultFolder(olFolderCalendar)
Outlookアプリケーションと「Namespace」を初期化し、予定表フォルダにアクセスします。
CreateObject(“Outlook.Application”)
Outlookアプリケーションを起動します。
GetNamespace(“MAPI”)
「Namespace」を取得し、Outlookデータ構造にアクセスします。
GetDefaultFolder(olFolderCalendar)
予定表フォルダを取得します。
Set items = calendarFolder.Items items.Sort “[Start]” items.IncludeRecurrences = True Set filteredItems = items.Restrict(“[Start] >= ‘” & startDate & “‘ AND [Start] <= ‘” & endDate & “‘”)
i = 2 For Each appt In filteredItems If TypeOf appt Is Outlook.AppointmentItem Then If InStr(1, appt.Subject, keyword, vbTextCompare) > 0 Then ws.Cells(i, 1).Value = appt.Subject ws.Cells(i, 2).Value = appt.Start ws.Cells(i, 3).Value = appt.End ws.Cells(i, 4).Value = appt.Location ws.Cells(i, 5).Value = appt.Body i = i + 1 End If End If Next appt
Public Sub AddAppointmentsFromExcel()
Dim outlookApp As Outlook.Application
Dim ns As Outlook.Namespace
Dim calendarFolder As Outlook.MAPIFolder
Dim items As Outlook.Items
Dim newAppt As Outlook.AppointmentItem
Dim existingAppt As Object
Dim ws As Worksheet
Dim i As Long
Dim isDuplicate As Boolean
'// Excelシートの設定
Set ws = ThisWorkbook.Sheets(1)
'// Outlookアプリケーションのセットアップ
Set outlookApp = CreateObject("Outlook.Application")
Set ns = outlookApp.GetNamespace("MAPI")
Set calendarFolder = ns.GetDefaultFolder(olFolderCalendar)
Set items = calendarFolder.Items
'// シート内のデータをOutlook予定表に登録
i = 2
Do While ws.Cells(i, 1).Value <> ""
'// 重複チェックフラグを初期化
isDuplicate = False
'// 予定表内のアイテムを確認
For Each existingAppt In items
If TypeOf existingAppt Is Outlook.AppointmentItem Then
If existingAppt.Subject = ws.Cells(i, 1).Value And _
existingAppt.Start = ws.Cells(i, 2).Value And _
existingAppt.End = ws.Cells(i, 3).Value Then
isDuplicate = True
Exit For
End If
End If
Next existingAppt
'// 重複がない場合のみ登録
If Not isDuplicate Then
Set newAppt = calendarFolder.Items.Add(olAppointmentItem)
With newAppt
.Subject = ws.Cells(i, 1).Value
.Start = ws.Cells(i, 2).Value
.End = ws.Cells(i, 3).Value
.Location = ws.Cells(i, 4).Value
.Body = ws.Cells(i, 5).Value
.Save
End With
End If
i = i + 1
Loop
MsgBox "ExcelのデータをOutlook予定表に登録しました(重複除外)。", vbInformation
'// オブジェクトの解放
Set newAppt = Nothing
Set items = Nothing
Set calendarFolder = Nothing
Set ns = Nothing
Set outlookApp = Nothing
End Sub
Dim outlookApp As Outlook.Application Dim ns As Outlook.Namespace Dim calendarFolder As Outlook.MAPIFolder Dim items As Outlook.Items Dim newAppt As Outlook.AppointmentItem Dim existingAppt As Object Dim ws As Worksheet Dim i As Long Dim isDuplicate As Boolean
isDuplicate: 重複を確認するためのフラグ。
Set ws = ThisWorkbook.Sheets(1)
現在のブック内の1枚目のシートを操作対象に設定します。
Set outlookApp = CreateObject(“Outlook.Application”) Set ns = outlookApp.GetNamespace(“MAPI”) Set calendarFolder = ns.GetDefaultFolder(olFolderCalendar) Set items = calendarFolder.Items
i = 2 Do While ws.Cells(i, 1).Value <> “” isDuplicate = False
Excelの2行目からデータをループ処理し、件名が空でない限り続行します。
For Each existingAppt In items If TypeOf existingAppt Is Outlook.AppointmentItem Then If existingAppt.Subject = ws.Cells(i, 1).Value And _ existingAppt.Start = ws.Cells(i, 2).Value And _ existingAppt.End = ws.Cells(i, 3).Value Then isDuplicate = True Exit For End If End If Next existingAppt
予定表内のアイテムをループして、同じ件名・開始日時・終了日時の予定が存在するかを確認します。
if Not isDuplicate Then Set newAppt = calendarFolder.Items.Add(olAppointmentItem) With newAppt .Subject = ws.Cells(i, 1).Value .Start = ws.Cells(i, 2).Value .End = ws.Cells(i, 3).Value .Location = ws.Cells(i, 4).Value .Body = ws.Cells(i, 5).Value .Save End With End If i = i + 1 Loop