Paperwork

5 Simple Ways to Strike Through Text in Excel

5 Simple Ways to Strike Through Text in Excel
How To Strike In Excel Sheet

If you've ever used Microsoft Excel for data management or presentation, you've likely come across the need to format text to highlight specific information or to signify that certain data points should be ignored. One such formatting option is striking through text. This feature allows you to draw a line through any text in a cell, indicating that the content is outdated, incorrect, or completed. Here, we'll explore five simple ways to achieve text strikethrough in Excel, ensuring your spreadsheets communicate exactly what you need them to.

1. Using Font Dialog Box

How To Strike Through Text In Excel Read A Topic Today
Strikethrough Font Dialog Box

To start off, the most straightforward way to apply strikethrough in Excel is through the Font dialog box:

  • Select the cell or range of cells where you want to apply strikethrough.
  • Press Ctrl + 1 to open the Format Cells dialog box, or right-click and select “Format Cells.”
  • Go to the “Font” tab, where you’ll find an option labeled “Strikethrough.” Click to activate it.
  • Confirm your changes by clicking “OK.”

2. Quick Access Toolbar (QAT) Shortcut

How To Strike Through Text In Excel Codky

To streamline the process, you can add strikethrough to your Quick Access Toolbar (QAT):

  • Right-click on the Excel Ribbon and choose “Customize Quick Access Toolbar.”
  • In the “Choose commands from” drop-down, select “All Commands.”
  • Scroll down to find “Strikethrough,” select it, and click “Add.”
  • Now, you can access strikethrough by clicking the button you’ve added to your QAT.

💡 Note: This method is particularly useful if you frequently need to apply strikethrough in your work.

3. Using Keyboard Shortcut

6 Practical Ways To Strikethrough Text And Data In Excel Upwork

Excel doesn’t offer a default keyboard shortcut for strikethrough, but you can customize one:

  • Go to “File” > “Options” > “Customize Ribbon.”
  • Select “Keyboard shortcuts: Customize” at the bottom of the dialog box.
  • In the “Categories” box, select “Home Tab.”
  • In the “Commands” box, scroll to find “Strikethrough.”
  • Assign a new shortcut (e.g., Ctrl + Shift + S) in the “Press new shortcut key” field, then click “Assign.”

💡 Note: This method requires admin privileges to customize Excel settings, so it might not work on some locked-down systems.

4. Conditional Formatting for Strikethrough

How To Strikethrough Text In Excel With Easy Shortcut

Conditional formatting can automatically apply strikethrough based on cell values:

  • Select the cells you want to format.
  • Go to the “Home” tab, click “Conditional Formatting,” then “New Rule.”
  • Choose “Use a formula to determine which cells to format.”
  • Enter a formula that returns TRUE when you want strikethrough to apply (e.g., =ISBLANK(A1) to strike through empty cells).
  • Click “Format,” navigate to the “Font” tab, enable “Strikethrough,” and click “OK” twice.

This method is particularly handy for visual cues when managing project task lists or inventory where items need to be marked as complete or obsolete.

5. VBA Macro for Strikethrough

How To Strikethrough Text L I K E T H I S In Word Excel Powerpoint

If you need to apply strikethrough regularly or in bulk, consider using Visual Basic for Applications (VBA) to create a macro:

  • Open the VBA Editor with Alt + F11.
  • Insert a new module (Insert > Module).
  • Paste the following VBA code into the module:
  • 
    Sub ApplyStrikethrough()
        Selection.Font.Strikethrough = True
    End Sub
    
    
  • Run this macro by pressing Alt + F8 or assigning it to a button or shortcut.

💡 Note: Macros can be shared across workbooks, saving time if you often need to apply strikethrough in different projects.

In wrapping up, we've covered five methods to strike through text in Excel, each with its advantages depending on your usage scenario. Whether you prefer the simplicity of the Font dialog box, the convenience of a QAT shortcut, the efficiency of keyboard shortcuts, the automation of conditional formatting, or the power of VBA macros, you now have a toolbox of options to make your Excel spreadsheets more informative and visually appealing. Remember, while striking through text is a minor tweak, its impact on communication and data integrity can be significant.

Can strikethrough be applied to an entire column in Excel?

How To Strikethrough Text In Excel Different Ways Youtube
+

Yes, by selecting the entire column and then applying any of the methods described above.

What if I need to remove the strikethrough?

Strikethrough In Excel Using Shortcut Key 5 Different Methods
+

Simply use the same method to reapply formatting, but deselect the strikethrough option or adjust the conditional formatting rules.

How can I apply strikethrough in Excel for Mac?

How To Strike Through In Excel 2010 Solve Your Tech
+

The same methods apply, though the keyboard shortcuts might differ. Check for Mac-specific shortcuts in Excel’s help documentation.

Related Articles

Back to top button