Microsoft Word Strikethrough Shortcut: A Practical Guide

Learn the Microsoft Word keyboard shortcut for strikethrough and how to use it on Windows and Mac. This Shortcuts Lib guide covers the Ctrl+5 shortcut, cross‑platform nuances, automation options, and practical tips for precise text formatting.

Shortcuts Lib
Shortcuts Lib Team
·5 min read
Strikethrough Shortcut - Shortcuts Lib
Photo by Mark_Rojovia Pixabay
Quick AnswerDefinition

The Microsoft Word keyboard shortcut for strikethrough on Windows is Ctrl+5, which toggles the strike line on the selected text. Mac users may encounter version-specific behavior or rely on the Font dialog to apply strikethrough. This article from Shortcuts Lib explains the native shortcut, cross‑platform notes, and automation options for consistent formatting.

Introduction: The power of a single keystroke for text formatting

In professional documents, strikethrough is a precise way to indicate edits without erasing content. The Microsoft Word keyboard shortcut for strikethrough is a time-saver that lets you maintain a clean editing flow. According to Shortcuts Lib Analysis, 2026, power users who leverage consistent keyboard shortcuts reduce citation errors and save seconds per edit, compounding into meaningful productivity gains over long documents. This article explains the Windows shortcut (Ctrl+5), outlines Mac considerations, and shows practical automation options to keep your workflow fast and reliable.

PowerShell
# PowerShell example: apply Strikethrough to current selection in Word # This script demonstrates how to toggle Strikethrough on the active selection in Word $word = New-Object -ComObject Word.Application $word.Visible = $true $doc = $word.Documents.Add() $sel = $word.Selection $sel.Text = "Sample text to strike through" $sel.Font.StrikeThrough = $true
  • Quick takeaway: learn the built‑in shortcut first, then layer automation for cross‑platform consistency.
  • Related concepts: keyboard shortcuts, text formatting, automation, Word on Mac, accessibility considerations.

}),

Understanding Strikethrough: where it lives in Word's formatting model

Strikethrough is a font attribute applied to selected text. In Word, you access it via the Font dialog or a keyboard shortcut. This attribute sits alongside other formatting options like bold, italic, and underline, and it can be toggled on or off for any portion of text. Shortcuts Lib's framework emphasizes stable mapping across platforms to minimize cognitive load during editing.

PowerShell
# PowerShell snippet: query the current selection's strikethrough state $word = New-Object -ComObject Word.Application $word.Visible = $true $doc = $word.Documents.Add() $sel = $word.Selection $sel.Text = "Edit this line" $sel.Font.StrikeThrough
  • If you’re curious about the underlying property, you’re checking the Font.StrikeThrough attribute. Variants may exist across forks of Word or Office editions, so test in your environment.

Windows shortcut: Ctrl+5 and practical usage across documents

The standard Windows shortcut for strikethrough is Ctrl+5. This single keystroke toggles the Strikethrough font attribute on the current selection, making it ideal for draft reviews and redlining. If an environment disables this shortcut, you can still apply strikethrough via Format > Font > Strikethrough (or customize the ribbon/quick access toolbar). Shortcuts Lib recommends practicing with a short sample document to build muscle memory.

PowerShell
# Windows automation example: ensure a selection has strikethrough $word = New-Object -ComObject Word.Application $word.Visible = $true $doc = $word.Documents.Add() $sel = $word.Selection $sel.Text = "This line will be struck through" $sel.Font.StrikeThrough = $true
  • Alternative: If you need to toggle off, re-select the text and press Ctrl+5 again.

MacOS specifics: keyboard behavior and customization options

On macOS, Word’s strikethrough shortcut can vary by version and language settings. Some versions map to Command+Shift+X, while others require the Font dialog path: Format > Font > Strikethrough. If the built‑in mapping doesn’t work, you can create a custom macOS keyboard shortcut at the system level or within Word’s preferences for a consistent experience. Shortcuts Lib emphasizes validating the shortcut on your macOS build before relying on it in critical edits.

APPLESCRIPT
-- AppleScript snippet to apply strikethrough in Word (shown for illustration) tell application "Microsoft Word" activate -- This script demonstrates the concept; practical scripts should use Word's AppleScript dictionary end tell
  • Quick note: Mac users may prefer mapping through System Preferences for consistency across Word and other apps.

Automating cross‑platform workflows: consistency and scripts

A core goal is to maintain consistent formatting across Windows and Mac documents. You can automate strikethrough application with platform‑specific scripts and then validate results with quick checks (e.g., search for the Font.StrikeThrough property in active ranges). Shortcuts Lib’s recommended workflow involves a small test document, a repeatable script, and a checklist to verify the property is toggled as expected across platforms. The value of automation is not just speed—it’s reliability for editors and teams.

PowerShell
# Cross-platform concept: apply strikethrough in a Word document on Windows $word = New-Object -ComObject Word.Application $word.Visible = $true $doc = $word.Documents.Add() $sel = $word.Selection $sel.Text = "Cross-platform strikethrough" $sel.Font.StrikeThrough = $true
Python
# Pseudo-cross-platform verification: confirm strikethrough state in a saved doc (illustrative) # This block demonstrates checking a property; actual Word object model use depends on your setup print("Verify Strikethrough: True/False depending on the selection") ```,

Step-by-step: implementing a robust shortcut workflow (6 steps)

  1. Identify the target text and ensure a clean selection that won’t disrupt formatting. 2) Memorize the Windows shortcut Ctrl+5 and test in a fresh document. 3) If on Mac, test Format > Font > Strikethrough and then attempt a system‑level shortcut mapping. 4) Create a small automation script (PowerShell for Windows; AppleScript for Mac) to toggle Strikethrough on the selection. 5) Save a template with a ready‑to‑use Strikethrough button on the Quick Access Toolbar. 6) Validate consistently across sample documents to ensure parity.

Tip: Keep a one‑page reference of platform differences to avoid misapplications during busy editing sessions.

Estimated time: 20-30 minutes.

} ,

Tips, warnings, and best practices

  • Pro tip: Add Strikethrough to your Quick Access Toolbar for one‑click formatting, reducing the cognitive load of memorized shortcuts.
  • Warning: Some Word versions or language packs may remap shortcuts; always verify in Settings > Keyboard Shortcuts.
  • Note: Strikethrough is a font attribute; if an export or print looks off, check the style definitions in the target template.
PowerShell
# Example: add a one-click shortcut to the Quick Access Toolbar via UI automation (conceptual) # Word UI automation is version specific; see official Word dictionary for exact commands
  • Pro tip: When collaborating, ensure you use the same shortcut across documents to reduce inconsistency in change tracking.

Steps

Estimated time: 20-30 minutes

  1. 1

    Identify the target text

    Select the text you want to strike through. Ensure the selection is precise to avoid unintended changes elsewhere in the document.

    Tip: Use Shift+Arrow keys to extend or shrink the selection cleanly.
  2. 2

    Try the built-in shortcut (Windows)

    Press Ctrl+5 to toggle Strikethrough on the selected text. If you don’t see a change, reselect the text and try again.

    Tip: If the shortcut doesn’t work, check Word’s keyboard shortcuts in Settings.
  3. 3

    Test on Mac (if applicable)

    On Mac, try Cmd+Shift+X or the Font dialog path to apply Strikethrough. Note differences between Word versions.

    Tip: Document the Mac behavior you observe for consistency across teams.
  4. 4

    Add a fallback workflow

    Configure the Quick Access Toolbar with the Strikethrough button for a one-click option.

    Tip: This reduces dependence on a single shortcut and helps new teammates.
  5. 5

    Create a small automation script

    Write a simple PowerShell script (Windows) or AppleScript (Mac) to toggle Strikethrough on a selection.

    Tip: Keep scripts in a shared repo for team use.
  6. 6

    Validate across documents

    Open multiple documents to verify the shortcut toggles Strikethrough consistently.

    Tip: Use a template to enforce formatting stability.
Pro Tip: Pair the shortcut with a visual cue (e.g., a red underline for tracked changes) to maintain clarity during reviews.
Warning: Mac shortcuts can vary by Word version; always test on your target setup before critical edits.
Note: Strikethrough is a font attribute; if your document uses a specific style, ensure the style isn’t overriding the font strike.

Keyboard Shortcuts

ActionShortcut
Apply Strikethrough to current selectionToggles the Strikethrough font attribute on the selected textCtrl+5
Open Font dialog and apply StrikethroughFormat > Font > Strikthrough as fallback when shortcut is unavailable

Questions & Answers

What is the Windows keyboard shortcut for strikethrough in Word?

The Windows shortcut to apply or toggle strikethrough in Word is Ctrl+5. If the shortcut is disabled or overridden, you can access Strikethrough via the Font dialog or customize the keyboard shortcuts in Word's settings.

On Windows, press Ctrl+5 to toggle strikethrough on the selected text. If that doesn’t work, use the Font dialog to enable Strikethrough.

Can I customize Word shortcuts for strikethrough on Windows and Mac?

Yes. Word lets you customize keyboard shortcuts in the Options/Preferences. You can assign a new key combination to the Strikethrough command, and on Mac you may also set system‑level shortcuts for consistency.

Yes, you can customize the Strikethrough shortcut in Word's settings and, if needed, map a system shortcut on Mac for consistency.

Does strikethrough affect printing or PDF exports?

Strikethrough is a font formatting attribute and typically prints as a line through the text. If you apply strikethrough in a template, ensure the style is preserved in exported formats like PDF or DOCX.

Strikethrough is a font style and should print with the document, but verify in PDFs or other exports to ensure the style carries through.

What should I do if Ctrl+5 doesn’t work on Windows?

Check Word’s keyboard shortcuts settings to confirm Ctrl+5 maps to Strikethrough. Disable conflicts from other applications, then test in a new document. You can also use the Font dialog as a fallback.

If Ctrl+5 isn’t working, review Word’s shortcut mappings, close conflicting apps, and try the Font dialog as a backup.

Is there a Mac equivalent to Ctrl+5 for strikethrough?

Mac users may see Cmd+Shift+X or rely on the Font dialog path. Since macOS Word versions vary, test your specific build and map a consistent shortcut if available.

Mac users should test Cmd+Shift+X or use the Font dialog; map a preference if your version supports it.

How can I verify Strikethrough is applied consistently across templates?

Create a small template with Strikethrough applied to a test paragraph and check multiple documents created from that template. Use a script or automation to validate the Font.StrikeThrough property across selections.

Make a test template with Strikethrough and verify it appears in multiple documents, optionally with a quick automation check.

Main Points

  • Master Ctrl+5 for Windows to toggle Strikethrough
  • Test Mac equivalents and use Font dialog as fallback
  • Add Strikethrough to Quick Access Toolbar for speed
  • Use automation to standardize cross‑platform formatting
  • Validate consistency across multiple documents

Related Articles