too many choices for time zones! can i reduce to actual time zones only?

Status
Not open for further replies.

ctj

Member
Outlook version
Outlook 2016 64 bit
Email Account
IMAP
i regularly need to schedule events in pacific and eastern time. i'm generally happy with the outlook calendar feature that allows me to set the time zone for an event (and especially happy when it allows me to set separate start and finish time zones, for transcon flights).

but is there a way to get rid of all the excess time zones? for example, i counted *six* different entries for UTC-5 (US eastern time). i get that there are places with weird daylight saving rules, but honestly, i will never need to know what time it is in haiti, bogota, saskatchewan, easter island, etc.

time zones is one place where i could really use a condensed "favorites" menu. alternatively, i'd love to just delete these other time zones. can either be done?
 
Well, you could delete time zone entries from windows. I don't *think* it will do any harm (I've edited names in the past without issue) but windows updates may restore them.

If you use a limited # of zones, it would be better to use macros to set the zones - create buttons on the appointment ribbon for the EasternTZ and CentralTZ macros. This sample will set the appt to ET or CT. Duplicate the EasternTZ macro, change the name and the time zone for each zone you use frequently. Zone names MS uses is here - Microsoft Time Zone Index Values


Code:
Dim tzStart As TimeZone

Sub EasternTZ()
' Repeat this macro, using new names
' for each zone you use frequently
Set tzStart = Application.TimeZones.Item("Eastern Standard Time")
changeTZ
End Sub

Sub CentralTZ()
Set tzStart = Application.TimeZones.Item("Central Standard Time")
changeTZ
End Sub


Private Sub changeTZ()
Set olAppt = Application.ActiveInspector.CurrentItem
With olAppt
     .StartTimeZone = tzStart
End With
End Sub
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
Z Task Filter Not Working When I add too many criteria Using Outlook 0
D Too many scripts? Outlook VBA and Custom Forms 1
GregS Outlook 2016 Too Many Archives Using Outlook 0
M warning for too many appointments on a same day in Outlook Using Outlook 1
M Charter ISP Claims Outlook Generating STMP Errors of Too Many Recipients Using Outlook 1
D Meeting Request - Too Many Recipients Using Outlook 0
Diane Poremsky "Too many files" Error Message Using Outlook 0
O W-a-a-y too many PSTs (Outlook 2003) Using Outlook 0
A Importing too many emails from Gmail Using Outlook 2
mikecox Too many "contacts" lists Using Outlook 2
R Too Many Devices Using Outlook 2
R Too many folders in Outlook 2013 Using Outlook 11
D Navigate to my calendar. Too many steps Exchange Server Administration 2
B Problem with fix for "Too Many Contact Folders" Using Outlook 3
B Too many ' tasks' when checking email Using Outlook 1
AmonRa Outlook 365 calendar - too much white space Using Outlook 0
L Outlook saved template function too limited Using Outlook 2
P Outlook pst file is too huge with POP3. How to save more space? Using Outlook 4
B Calendar shows too much info by default Using Outlook 0
C BCM Text Boxes & tabs are too short when downloading to Office 365 BCM (Business Contact Manager) 0
V Your Imap server wants to alert you to the following: Message too large Using Outlook 4
S New Quick Step based on Team email QS - automatically update too Using Outlook 1
V IMAP: email is too large Using Outlook 1
J Contact page too large for screen. Can't see categories, etc. Using Outlook 1
J Microsoft Outlook 2007 Font Size Too Small Using Outlook 1
A My move to MS is not going too well: Need Help !!! Using Outlook 14
M Font Size Too Small When Replying and Sendig Emails on Outlook 2007 Using Outlook 1
G Opening messages takes too long Using Outlook 5
S too difficult of a question to google Using Outlook 2
E OWA phones home too much? Exchange Server Administration 1
S Using Scanpst too often? Using Outlook 2
H Too simple I would think but.. Using Outlook 1
J Contacts in 32bit 2010 filled with Bounce Emails (and contacts too)! Using Outlook 1
Y Changing colour of selection bar in Outlook (too light, needs to be grey) Using Outlook 4
A Is my archive too big? Using Outlook 1
M send/ receive action too often Using Outlook 2
D Font size too large on received emails in outlook 2010 Using Outlook 26
N error when copying outlook data "can not copy: the path too deep" Using Outlook 6
A Eseutil File Dump fails in the path to the file is too long... Exchange Server Administration 2
J How to import many msg into different public folders in Outlook Outlook VBA and Custom Forms 7
O Same email address, same person, names in so many ways Using Outlook 4
J Moved many emails to Outlook external folder, need to delete on Gmail server Using Outlook 14
T Many problems with outlook.com - will upgrade to Outlook soon Using Outlook 1
GregS Many Sent Item folders Using Outlook 3
P how to remove unwanted PST file default categories assigned to many calendar entries Using Outlook 7
L Why do i get so many drafts? Using Outlook 12
T Received many email without information Using Outlook 1
M How many days are items in Recover Deleted at Outlook.com ? Using Outlook.com accounts in Outlook 4
O Copy mails from many subfolders to 1 foldr Using Outlook 2
I Many empty Contacts folders.. cannot get rid of them Using Outlook 4

Similar threads

Back
Top