• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

TinyGrab

Your Trusted Source for Tech, Finance & Brand Advice

  • Personal Finance
  • Tech & Social
  • Brands
  • Terms of Use
  • Privacy Policy
  • Get In Touch
  • About Us
Home » How do I do strikethrough in Google Docs?

How do I do strikethrough in Google Docs?

April 8, 2025 by TinyGrab Team Leave a Comment

Table of Contents

Toggle
  • Mastering the Art of Strikethrough in Google Docs: Your Comprehensive Guide
    • The Three Paths to Strikethrough Nirvana
      • Method 1: The Format Menu Method
      • Method 2: The Keyboard Shortcut Shortcut
      • Method 3: Unleashing Google Apps Script (For the Advanced User)
    • Frequently Asked Questions (FAQs) about Strikethrough in Google Docs
      • FAQ 1: Can I strikethrough an entire paragraph at once?
      • FAQ 2: How do I remove the strikethrough from text?
      • FAQ 3: Is there a way to customize the strikethrough line (color, thickness, etc.)?
      • FAQ 4: Can I use strikethrough in Google Sheets or Slides?
      • FAQ 5: Why isn’t the keyboard shortcut working for me?
      • FAQ 6: Can I create a custom keyboard shortcut for strikethrough?
      • FAQ 7: Does strikethrough affect the word count in Google Docs?
      • FAQ 8: Can I strikethrough text in the Google Docs mobile app?
      • FAQ 9: Is there a difference between “strikethrough” and “delete” in Google Docs?
      • FAQ 10: Can I strikethrough part of a word?
      • FAQ 11: How can I use strikethrough effectively in collaborative editing?
      • FAQ 12: Are there any limitations to using strikethrough in Google Docs?

Mastering the Art of Strikethrough in Google Docs: Your Comprehensive Guide

So, you’re looking to strike out some text in your Google Docs masterpiece? Excellent choice! Strikethrough is a powerful tool for indicating deletions, revisions, or completed tasks. But how exactly do you wield this digital pen? Fear not, for I, your seasoned digital document artisan, am here to guide you through the process.

The short answer: There are three primary methods to strikethrough text in Google Docs. You can use the Format menu, employ a nifty keyboard shortcut, or even leverage the power of Google Apps Script. Let’s delve into each.

The Three Paths to Strikethrough Nirvana

Method 1: The Format Menu Method

This is the most intuitive and straightforward approach, particularly for beginners.

  1. Select the Text: Begin by highlighting the specific words, phrases, or paragraphs you wish to adorn with a strikethrough. Remember, precision is key!
  2. Navigate to Format: At the top of your Google Docs window, locate the “Format” menu. Click on it.
  3. Text Options Await: A dropdown menu will appear. Hover your mouse over the “Text” option.
  4. Strikethrough Revealed: Another submenu will materialize. Within this submenu, you’ll find the glorious “Strikethrough” option. Click it.

Voila! Your selected text will now proudly display a line running through its center.

Method 2: The Keyboard Shortcut Shortcut

For the efficiency-minded, the keyboard shortcut is your best friend. This method offers speed and convenience, allowing you to strikethrough text without ever lifting your fingers from the keyboard.

  • Windows/Chrome OS: Select the text and press Alt + Shift + 5.
  • Mac: Select the text and press ⌘ + Shift + X.

Master these shortcuts, and you’ll be strikethroughing like a pro in no time. It’s like a secret handshake for Google Docs power users.

Method 3: Unleashing Google Apps Script (For the Advanced User)

If you’re a coding enthusiast or need to automate strikethrough application on a large scale, Google Apps Script is your weapon of choice. This method requires some coding knowledge, but the potential for customization and automation is immense.

  1. Open Script Editor: In your Google Doc, go to “Tools” > “Script editor.”

  2. Write the Script: Paste the following code into the script editor:

    function addStrikethrough() {   var doc = DocumentApp.getActiveDocument();   var selection = doc.getSelection();   if (selection) {     var elements = selection.getRangeElements();     for (var i = 0; i < elements.length; i++) {       var element = elements[i];       if (element.getType() == DocumentApp.ElementType.TEXT) {         var text = element.getElement().asText();         text.setStrikethrough(true);       }     }   } else {     Browser.msgBox('Please select some text to strikethrough.');   } } 
  3. Save the Script: Click the save icon and give your script a descriptive name (e.g., “StrikethroughScript”).

  4. Run the Script (and Authorize): Click the “Run” button (the play icon). You’ll be prompted to authorize the script to access your Google Docs. Grant the necessary permissions.

  5. Add a Custom Menu Item: To easily access your script from within Google Docs:

    • Add an onOpen() function to your script:

      function onOpen() {   var ui = DocumentApp.getUi();   ui.createMenu('Custom Scripts')       .addItem('Strikethrough Text', 'addStrikethrough')       .addToUi(); } 
    • Save the script again.

    • Refresh your Google Doc. You should now see a “Custom Scripts” menu at the top.

  6. Use the Script: Select the text you want to strikethrough, then go to “Custom Scripts” > “Strikethrough Text.”

This method allows for incredible flexibility. You can modify the script to strikethrough specific patterns, apply strikethrough based on certain conditions, and much more. It’s the ultimate strikethrough power move.

Frequently Asked Questions (FAQs) about Strikethrough in Google Docs

FAQ 1: Can I strikethrough an entire paragraph at once?

Absolutely! Simply select the entire paragraph using your mouse or keyboard shortcuts (like Ctrl+A for select all, then Shift + arrow keys for precision selection) and then apply any of the strikethrough methods described above.

FAQ 2: How do I remove the strikethrough from text?

The process is the same as applying the strikethrough. Select the text with the strikethrough, then use the Format menu, keyboard shortcut, or Apps Script (if that’s how you applied it) to toggle the strikethrough off.

FAQ 3: Is there a way to customize the strikethrough line (color, thickness, etc.)?

Unfortunately, Google Docs does not offer built-in options to customize the strikethrough line’s appearance. The strikethrough will always be a standard black line. You might consider using a drawing tool within Docs as an alternative, but that can be cumbersome.

FAQ 4: Can I use strikethrough in Google Sheets or Slides?

Yes! The strikethrough functionality is available in both Google Sheets and Google Slides, and the methods for applying it are similar to those in Google Docs. You’ll find the option in the Format menu (usually under “Text formatting” in Sheets) or you can use the same keyboard shortcuts.

FAQ 5: Why isn’t the keyboard shortcut working for me?

Double-check that you are using the correct keyboard shortcut for your operating system (Windows/Chrome OS or Mac). Also, ensure that you have actually selected the text you want to strikethrough. If you’re still having trouble, try restarting your browser or computer. Browser extensions can sometimes interfere with keyboard shortcuts.

FAQ 6: Can I create a custom keyboard shortcut for strikethrough?

Google Docs does not allow you to define custom keyboard shortcuts directly within the application. However, you might be able to use third-party software or browser extensions to remap keyboard shortcuts at the operating system level. Be cautious when using such tools, ensuring they are reputable and secure.

FAQ 7: Does strikethrough affect the word count in Google Docs?

No, applying strikethrough to text does not affect the word count in Google Docs. The words are still counted as part of the document, even though they are visually marked as deleted or revised.

FAQ 8: Can I strikethrough text in the Google Docs mobile app?

Yes, you can strikethrough text in the Google Docs mobile app. Select the text, tap the “Format” icon (usually an “A” with lines next to it), then navigate to the “Text” section and select the “Strikethrough” option.

FAQ 9: Is there a difference between “strikethrough” and “delete” in Google Docs?

Yes, there’s a significant difference! Deleting text removes it entirely from the document. Strikethrough, on the other hand, keeps the text visible but indicates that it should be considered deleted or revised. Strikethrough is often used in collaborative editing to show changes without permanently removing the original text.

FAQ 10: Can I strikethrough part of a word?

Yes, you can! Google Docs allows you to strikethrough any portion of the text, down to individual characters. Simply select the specific part of the word you want to strikethrough and apply the formatting.

FAQ 11: How can I use strikethrough effectively in collaborative editing?

Strikethrough is invaluable for collaborative editing. Use it to suggest deletions or revisions without permanently removing the original text. This allows other collaborators to see your proposed changes and provide feedback or revert them if necessary. It’s a transparent way to track progress and maintain a clear record of edits.

FAQ 12: Are there any limitations to using strikethrough in Google Docs?

The main limitation is the lack of customization options for the strikethrough line itself. You can’t change its color, thickness, or style within Google Docs. Also, heavily relying on strikethrough in very long documents might make them visually cluttered, so consider using other revision features like suggested edits or comments in conjunction with strikethrough.

By mastering these methods and understanding the nuances of strikethrough, you can effectively communicate changes, highlight revisions, and enhance your document creation workflow in Google Docs. Now go forth and strikethrough with confidence!

Filed Under: Tech & Social

Previous Post: « Does Instacart Use Afterpay?
Next Post: What do people use an iPad for? »

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

NICE TO MEET YOU!

Welcome to TinyGrab! We are your trusted source of information, providing frequently asked questions (FAQs), guides, and helpful tips about technology, finance, and popular US brands. Learn more.

Copyright © 2025 · Tiny Grab