メインコンテンツへスキップ

Outlookで予定を会議に、またはその逆に変更するにはどうすればよいですか?

Outlookでは、予定と会議の両方がカレンダーフォルダーに配置されることは誰もが知っていますが、それらは異なります。 予定と会議の間で変換する方法を知っていますか? 以下の方法では、Outlookの予定表で、予定を会議に変更したり、会議を予定に変更したりするための簡単なトリックを紹介します。

Office タブ - Microsoft Office でタブによる編集と参照を有効にし、仕事をスムーズにします
Kutools for Outlook - 100 以上の高度な機能で Outlook を強化し、優れた効率を実現します
これらの高度な機能を使用して、Outlook 2021 ~ 2010 または Outlook 365 を強化します。 包括的な 60 日間の無料トライアルを利用して、メール エクスペリエンスを向上させてください。

矢印青い右バブル Outlookで予定を会議に変更する

この方法では、会議の参加者を予定に招待し、その予定をOutlookの会議に変換する方法について説明します。

1.カレンダービューに移動し、カレンダーで会議に変換する予定を右クリックして、 参加者を招待する 右クリックメニューから。 スクリーンショットを参照してください:

2.これで、選択した予定のコンテンツを含む会議ウィンドウが開きます。 クリックしてくださいボタン。 スクリーンショットを参照してください:

3.ポップアップの[出席者とリソースの選択]ダイアログボックスで、出席者として招待する連絡先を選択し、[ 必須/オプション/リソース 必要に応じてボタンをクリックし、 OK ボタン。 上記のスクリーンショットを参照してください。

注: ホールディング Ctrlキー キーを押すと、各連絡先をクリックして、隣接していない複数の連絡先を選択できます。 を保持します シフト キーを押すと、最初の連絡先と最後の連絡先をクリックして、隣接する複数の連絡先を選択できます。

4.ここで、会議ウィンドウに戻ります。会議の内容を編集して、[ 送信

これまでに、選択した予定を会議に変換し、指定した出席者に送信しました。


矢印青い右バブル Outlookで会議を予定に変更する

この方法では、選択した会議をOutlookの予定に変換するVBAが導入されます。 次のようにしてください。

1.カレンダービューに移動し、カレンダーで予定に変換する会議をクリックして選択します。

2。 押す 他の + F11 キーを同時に押して、Microsoft Visual Basic forApplicationsウィンドウを開きます。

3。 クリック インセット > モジュール、次にVBAコードの下を新しいモジュールウィンドウに貼り付けます。

VBA:Outlookで会議を予定に変換する

Sub Meetings2Appointments()
Dim sWindowType As String
Dim oItem As Object

sWindowType = TypeName(Application.ActiveWindow)
Select Case sWindowType
Case "Explorer"
If Application.ActiveExplorer.Selection.Count > 0 Then
For Each oItem In Application.ActiveExplorer.Selection
Debug.Print oItem.Class
If oItem.Class = olAppointment Then
If oItem.MeetingStatus <> olNonMeeting Then
Call Meeting2Appointment(oItem)
End If
End If
Next
End If
Case "Inspector"
Set oItem = Application.ActiveInspector.CurrentItem
If oItem.Class = olAppointment Then
If oItem.MeetingStatus <> olNonMeeting Then
Call Meeting2Appointment(oItem)
End If
End If
End Select
Set oItem = Nothing
End Sub

Sub Meeting2Appointment(oMeeting As Outlook.AppointmentItem)
With oMeeting
' remove all recipients
Do Until .Recipients.Count = 0
.Recipients.Remove 1
Loop
' reset meeting status
.MeetingStatus = olNonMeeting
.Save
End With
End Sub

4。 プレス F5 キーを押すか、 ラン このVBAを除外するボタン。

これで、選択したすべての会議がOutlookの予定に変換されます。


矢印青い右バブル関連記事


最高のオフィス生産性向上ツール

Kutools for Outlook - Outlook を強化する 100 以上の強力な機能

🤖 AIメールアシスタント: AI の魔法を備えたインスタント プロのメール - ワンクリックで天才的な返信、完璧な口調、多言語の習得。メールを簡単に変革しましょう! ...

📧 自動メール: 不在時 (POP および IMAP で利用可能)  /  メール送信のスケジュール設定  /  メール送信時のルールによる自動CC/BCC  /  自動転送 (高度なルール)   /  あいさつを自動追加   /  複数受信者の電子メールを個別のメッセージに自動的に分割する ...

📨 電子メール管理: メールを簡単に思い出す  /  件名などで詐欺メールをブロック  /  重複するメールを削除する  /  高度な検索  /  フォルダーを統合する ...

📁 アタッチメント プロバッチ保存  /  バッチデタッチ  /  バッチ圧縮  /  自動保存   /  自動デタッチ  /  自動圧縮 ...

🌟 インターフェースマジック: 😊もっと可愛くてクールな絵文字   /  タブ付きビューで Outlook の生産性を向上  /  Outlook を閉じる代わりに最小化する ...

???? ワンクリックの驚異: 受信した添付ファイルをすべてに返信する  /   フィッシングメール対策  /  🕘送信者のタイムゾーンを表示 ...

👩🏼‍🤝‍👩🏻 連絡先とカレンダー: 選択したメールから連絡先を一括追加  /  連絡先グループを個別のグループに分割する  /  誕生日のリマインダーを削除する ...

オーバー 100の特長 あなたの探索をお待ちしています! ここをクリックして詳細をご覧ください。

 

 

Comments (8)
Rated 5 out of 5 · 1 ratings
This comment was minimized by the moderator on the site
Best fix ever! I've been looking for a solution for a long time and this code works great - easy enough for someone like me with limited coding skills :)
This comment was minimized by the moderator on the site
I'd like to change an Outlook meeting to a MS Teams meeting. Any ideas?
This comment was minimized by the moderator on the site
Hi Parker Gardner,
Methods introduced on this webpage can only convert between appointments and meetings in Outlook. It will be hard to convert between Outlook meeting and Microsoft team meeting.
This comment was minimized by the moderator on the site
thanks a lot, exactly what i was searching for. appreciate this help.
This comment was minimized by the moderator on the site
Also You can just click on "Cancel invitation" button and it reverts back to an appointment (removing atendees)
This comment was minimized by the moderator on the site
Möchte mich SEHR für diesen Hinweis zu der Schaltfläche bedanken. Das ist ja mal sowas von einfacher als die Variante mit dem Visual Basic Code :)
Rated 5 out of 5
This comment was minimized by the moderator on the site
Amazingly easy!!!! WOWO
This comment was minimized by the moderator on the site
Works like a charm!
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations