How do I show all day appointments in day, but hide them in work week in Outlook 2013
I've made two views, one showing all day appointments and one not showing them. I want to have the view showing all day appointments when switching to day view, but when switching to work week or month, I want to switch to the view not showing those all day appointments. How do I do that
Alternatively, is there a way I can reduce the size of the part of the days that shows all day appointments?
Am I just missing something? It does not make sense that I can define different views, but not set a default view for each arrangement separately.
microsoft-outlook-2013 calendar
add a comment |
I've made two views, one showing all day appointments and one not showing them. I want to have the view showing all day appointments when switching to day view, but when switching to work week or month, I want to switch to the view not showing those all day appointments. How do I do that
Alternatively, is there a way I can reduce the size of the part of the days that shows all day appointments?
Am I just missing something? It does not make sense that I can define different views, but not set a default view for each arrangement separately.
microsoft-outlook-2013 calendar
add a comment |
I've made two views, one showing all day appointments and one not showing them. I want to have the view showing all day appointments when switching to day view, but when switching to work week or month, I want to switch to the view not showing those all day appointments. How do I do that
Alternatively, is there a way I can reduce the size of the part of the days that shows all day appointments?
Am I just missing something? It does not make sense that I can define different views, but not set a default view for each arrangement separately.
microsoft-outlook-2013 calendar
I've made two views, one showing all day appointments and one not showing them. I want to have the view showing all day appointments when switching to day view, but when switching to work week or month, I want to switch to the view not showing those all day appointments. How do I do that
Alternatively, is there a way I can reduce the size of the part of the days that shows all day appointments?
Am I just missing something? It does not make sense that I can define different views, but not set a default view for each arrangement separately.
microsoft-outlook-2013 calendar
microsoft-outlook-2013 calendar
asked Jul 19 '15 at 10:19
ErnstErnst
841515
841515
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Unfortunately, Day/Week/Month are just arrangements of a single view, not separate views. So, you can filter out all day appointments by using Advanced Filter (All Day Event not equal Yes), but this will apply to all arrangements.
Alternatively, you can create to "Day/Week/Month" views, one that filters All Day Events and one that not.
VBA way. You'll need to create a separate view for each of the arrangements (in the sample below, these are views named "Days", "Weeks" and "Months"):
Public WithEvents OutlookExplorer As Outlook.Explorer
Private Sub Application_Startup()
Set OutlookExplorer = ActiveExplorer
End Sub
Private Sub OutlookExplorer_ViewSwitch()
Set View = OutlookExplorer.CurrentView
If View.ViewType = 2 Then
If View.Name = "Days" And View.CalendarViewMode <> 0 Then
View.CalendarViewMode = 0
View.Save
ElseIf View.Name = "Weeks" And View.CalendarViewMode <> 1 Then
View.CalendarViewMode = 1
View.Save
ElseIf View.Name = "Months" And View.CalendarViewMode <> 2 Then
View.CalendarViewMode = 2
View.Save
End If
End If
End Sub
Now, the correct arrangement will be applied automatically when switching to the one of the custom views ("Days", "Weeks" or "Months"). Additionally, you can place the "Change View" button right on "Home" tab on your calendar ribbon.
I made two views so far. I thought maybe of writing a macro that switches between them when switching between day and week arrangement. Is that possible in Outlook (I know you can write macros in Outlook, I just don't have a clue as to the capabilities there)? Would such a macro burden Outlook heavily or would it still run decently?
– Ernst
Jul 20 '15 at 6:03
You can't do it this way because you need ViewSwitch event and Outlook doesn't fire it when changing arrangements. But what you can do is to create a separate view for each of the arrangements and apply the arrangements automatically (see updated answer).
– thims
Jul 20 '15 at 15:38
add a comment |
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f942481%2fhow-do-i-show-all-day-appointments-in-day-but-hide-them-in-work-week-in-outlook%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Unfortunately, Day/Week/Month are just arrangements of a single view, not separate views. So, you can filter out all day appointments by using Advanced Filter (All Day Event not equal Yes), but this will apply to all arrangements.
Alternatively, you can create to "Day/Week/Month" views, one that filters All Day Events and one that not.
VBA way. You'll need to create a separate view for each of the arrangements (in the sample below, these are views named "Days", "Weeks" and "Months"):
Public WithEvents OutlookExplorer As Outlook.Explorer
Private Sub Application_Startup()
Set OutlookExplorer = ActiveExplorer
End Sub
Private Sub OutlookExplorer_ViewSwitch()
Set View = OutlookExplorer.CurrentView
If View.ViewType = 2 Then
If View.Name = "Days" And View.CalendarViewMode <> 0 Then
View.CalendarViewMode = 0
View.Save
ElseIf View.Name = "Weeks" And View.CalendarViewMode <> 1 Then
View.CalendarViewMode = 1
View.Save
ElseIf View.Name = "Months" And View.CalendarViewMode <> 2 Then
View.CalendarViewMode = 2
View.Save
End If
End If
End Sub
Now, the correct arrangement will be applied automatically when switching to the one of the custom views ("Days", "Weeks" or "Months"). Additionally, you can place the "Change View" button right on "Home" tab on your calendar ribbon.
I made two views so far. I thought maybe of writing a macro that switches between them when switching between day and week arrangement. Is that possible in Outlook (I know you can write macros in Outlook, I just don't have a clue as to the capabilities there)? Would such a macro burden Outlook heavily or would it still run decently?
– Ernst
Jul 20 '15 at 6:03
You can't do it this way because you need ViewSwitch event and Outlook doesn't fire it when changing arrangements. But what you can do is to create a separate view for each of the arrangements and apply the arrangements automatically (see updated answer).
– thims
Jul 20 '15 at 15:38
add a comment |
Unfortunately, Day/Week/Month are just arrangements of a single view, not separate views. So, you can filter out all day appointments by using Advanced Filter (All Day Event not equal Yes), but this will apply to all arrangements.
Alternatively, you can create to "Day/Week/Month" views, one that filters All Day Events and one that not.
VBA way. You'll need to create a separate view for each of the arrangements (in the sample below, these are views named "Days", "Weeks" and "Months"):
Public WithEvents OutlookExplorer As Outlook.Explorer
Private Sub Application_Startup()
Set OutlookExplorer = ActiveExplorer
End Sub
Private Sub OutlookExplorer_ViewSwitch()
Set View = OutlookExplorer.CurrentView
If View.ViewType = 2 Then
If View.Name = "Days" And View.CalendarViewMode <> 0 Then
View.CalendarViewMode = 0
View.Save
ElseIf View.Name = "Weeks" And View.CalendarViewMode <> 1 Then
View.CalendarViewMode = 1
View.Save
ElseIf View.Name = "Months" And View.CalendarViewMode <> 2 Then
View.CalendarViewMode = 2
View.Save
End If
End If
End Sub
Now, the correct arrangement will be applied automatically when switching to the one of the custom views ("Days", "Weeks" or "Months"). Additionally, you can place the "Change View" button right on "Home" tab on your calendar ribbon.
I made two views so far. I thought maybe of writing a macro that switches between them when switching between day and week arrangement. Is that possible in Outlook (I know you can write macros in Outlook, I just don't have a clue as to the capabilities there)? Would such a macro burden Outlook heavily or would it still run decently?
– Ernst
Jul 20 '15 at 6:03
You can't do it this way because you need ViewSwitch event and Outlook doesn't fire it when changing arrangements. But what you can do is to create a separate view for each of the arrangements and apply the arrangements automatically (see updated answer).
– thims
Jul 20 '15 at 15:38
add a comment |
Unfortunately, Day/Week/Month are just arrangements of a single view, not separate views. So, you can filter out all day appointments by using Advanced Filter (All Day Event not equal Yes), but this will apply to all arrangements.
Alternatively, you can create to "Day/Week/Month" views, one that filters All Day Events and one that not.
VBA way. You'll need to create a separate view for each of the arrangements (in the sample below, these are views named "Days", "Weeks" and "Months"):
Public WithEvents OutlookExplorer As Outlook.Explorer
Private Sub Application_Startup()
Set OutlookExplorer = ActiveExplorer
End Sub
Private Sub OutlookExplorer_ViewSwitch()
Set View = OutlookExplorer.CurrentView
If View.ViewType = 2 Then
If View.Name = "Days" And View.CalendarViewMode <> 0 Then
View.CalendarViewMode = 0
View.Save
ElseIf View.Name = "Weeks" And View.CalendarViewMode <> 1 Then
View.CalendarViewMode = 1
View.Save
ElseIf View.Name = "Months" And View.CalendarViewMode <> 2 Then
View.CalendarViewMode = 2
View.Save
End If
End If
End Sub
Now, the correct arrangement will be applied automatically when switching to the one of the custom views ("Days", "Weeks" or "Months"). Additionally, you can place the "Change View" button right on "Home" tab on your calendar ribbon.
Unfortunately, Day/Week/Month are just arrangements of a single view, not separate views. So, you can filter out all day appointments by using Advanced Filter (All Day Event not equal Yes), but this will apply to all arrangements.
Alternatively, you can create to "Day/Week/Month" views, one that filters All Day Events and one that not.
VBA way. You'll need to create a separate view for each of the arrangements (in the sample below, these are views named "Days", "Weeks" and "Months"):
Public WithEvents OutlookExplorer As Outlook.Explorer
Private Sub Application_Startup()
Set OutlookExplorer = ActiveExplorer
End Sub
Private Sub OutlookExplorer_ViewSwitch()
Set View = OutlookExplorer.CurrentView
If View.ViewType = 2 Then
If View.Name = "Days" And View.CalendarViewMode <> 0 Then
View.CalendarViewMode = 0
View.Save
ElseIf View.Name = "Weeks" And View.CalendarViewMode <> 1 Then
View.CalendarViewMode = 1
View.Save
ElseIf View.Name = "Months" And View.CalendarViewMode <> 2 Then
View.CalendarViewMode = 2
View.Save
End If
End If
End Sub
Now, the correct arrangement will be applied automatically when switching to the one of the custom views ("Days", "Weeks" or "Months"). Additionally, you can place the "Change View" button right on "Home" tab on your calendar ribbon.
edited Jul 20 '15 at 15:37
answered Jul 19 '15 at 17:24
thimsthims
7,5241833
7,5241833
I made two views so far. I thought maybe of writing a macro that switches between them when switching between day and week arrangement. Is that possible in Outlook (I know you can write macros in Outlook, I just don't have a clue as to the capabilities there)? Would such a macro burden Outlook heavily or would it still run decently?
– Ernst
Jul 20 '15 at 6:03
You can't do it this way because you need ViewSwitch event and Outlook doesn't fire it when changing arrangements. But what you can do is to create a separate view for each of the arrangements and apply the arrangements automatically (see updated answer).
– thims
Jul 20 '15 at 15:38
add a comment |
I made two views so far. I thought maybe of writing a macro that switches between them when switching between day and week arrangement. Is that possible in Outlook (I know you can write macros in Outlook, I just don't have a clue as to the capabilities there)? Would such a macro burden Outlook heavily or would it still run decently?
– Ernst
Jul 20 '15 at 6:03
You can't do it this way because you need ViewSwitch event and Outlook doesn't fire it when changing arrangements. But what you can do is to create a separate view for each of the arrangements and apply the arrangements automatically (see updated answer).
– thims
Jul 20 '15 at 15:38
I made two views so far. I thought maybe of writing a macro that switches between them when switching between day and week arrangement. Is that possible in Outlook (I know you can write macros in Outlook, I just don't have a clue as to the capabilities there)? Would such a macro burden Outlook heavily or would it still run decently?
– Ernst
Jul 20 '15 at 6:03
I made two views so far. I thought maybe of writing a macro that switches between them when switching between day and week arrangement. Is that possible in Outlook (I know you can write macros in Outlook, I just don't have a clue as to the capabilities there)? Would such a macro burden Outlook heavily or would it still run decently?
– Ernst
Jul 20 '15 at 6:03
You can't do it this way because you need ViewSwitch event and Outlook doesn't fire it when changing arrangements. But what you can do is to create a separate view for each of the arrangements and apply the arrangements automatically (see updated answer).
– thims
Jul 20 '15 at 15:38
You can't do it this way because you need ViewSwitch event and Outlook doesn't fire it when changing arrangements. But what you can do is to create a separate view for each of the arrangements and apply the arrangements automatically (see updated answer).
– thims
Jul 20 '15 at 15:38
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f942481%2fhow-do-i-show-all-day-appointments-in-day-but-hide-them-in-work-week-in-outlook%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown