Alphabetical MS Word Shortcuts: A–Z Guide
A comprehensive alphabetical guide to shortcut keys in Microsoft Word, covering Windows and macOS mappings, practical examples, and best practices. Learn essential A–Z keystrokes to speed up editing, formatting, navigation, and document management with tips from Shortcuts Lib.

Alphabetical shortcuts in MS Word: A–Z overview
In Microsoft Word, learning shortcuts by letter helps you build a mental map that speeds editing, formatting, and navigation. This alphabetical approach highlights frequently used actions across A–Z, while noting platform differences between Windows and macOS. The goal is to give you a practical, reusable framework you can customize as Word evolves. Shortcuts vary by version and user configuration, so treat this as a living cheatsheet you refine over time. The rest of this article will provide concrete examples, runnable code snippets for reference, and guidance on testing shortcuts in your own Word environment.
# Alphabet mapping for Word shortcuts (illustrative)
letters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
az_shortcuts = {
'A': {'name': 'Align Left', 'windows': 'Ctrl+L', 'macos': 'Cmd+L'},
'B': {'name': 'Bold', 'windows': 'Ctrl+B', 'macos': 'Cmd+B'},
'C': {'name': 'Copy', 'windows': 'Ctrl+C', 'macos': 'Cmd+C'},
'D': {'name': 'Delete', 'windows': 'Delete', 'macos': 'Delete'}
}
# Fill in remaining letters with a placeholder to avoid misstatements
for ch in letters[4:]:
az_shortcuts[ch] = {'name': 'Unknown (customizable)', 'windows': None, 'macos': None}
print(az_shortcuts)Note: Entries with None indicate shortcuts that are often version- and user-dependent. Use this as a baseline and maintain a personal reference sheet. Shortcuts Lib recommends keeping an evolving alphabetic cheatsheet and updating it after Word updates.