Skip to main content
 

How to count / sum strikethrough cells in Excel?

Author: Xiaoyang Last Modified: 2024-08-01

In Excel, we always format strikethrough for some cells which indicate the cell values are useless or invalid, so that we can analyze the data more accurately. In this article, I will talk about how to do some calculations in the range with these strikethrough cells in Excel.

Count strikethrough cells in Excel

Count without strikethrough cells in Excel

Sum exclude strikethrough cells in Excel


arrow blue right bubble Count strikethrough cells in Excel

If you want to know how many cells with strikethrough format in a range, you can create a User Defined Function, please do as following steps:

1. Hold down the ALT + F11 keys to open the Microsoft Visual Basic for Applications window.

2. Click Insert > Module, and paste the following code in the Module Window.

VBA code: Count strikethrough cells

Public Function CountStrike(pWorkRng As Range) As Long
'Update 20140819
Application.Volatile
Dim pRng As Range
Dim xOut As Long
xOut = 0
For Each pRng In pWorkRng
    If pRng.Font.Strikethrough Then
        xOut = xOut + 1
    End If
Next
CountStrike = xOut
End Function

3. Then save and close this code, and return to the worksheet, and then enter this formula =CountStrike(A2:B14) to a blank cell, see screenshot:

count strikethrough cells with user defined function

4. Then press Enter key, and all the strikethrough cells have been counted. See screenshot:

count strikethrough cells result


arrow blue right bubble Count without strikethrough cells in Excel

But, sometimes, you may like to count the number of only the normal cells which excluding the strikethrough cells. The following code can help you.

1. Hold down the ALT + F11 keys to open the Microsoft Visual Basic for Applications window.

2. Click Insert > Module, and paste the following code in the Module Window.

VBA code: Count without strikethrough cells

Public Function CountNoStrike(pWorkRng As Range) As Long
'Update 20140819
Application.Volatile
Dim pRng As Range
Dim xOut As Long
xOut = 0
For Each pRng In pWorkRng
    If Not pRng.Font.Strikethrough Then
        xOut = xOut + 1
    End If
Next
CountNoStrike = xOut
End Function

3. Then save and close this code, go back to your worksheet, type this formula =countnostrike(A2:B14) into a blank cell, and press Enter key, then you will get the result you need.

count non strikethrough cells with user defined function

Note: In above formulas, A2:B14 is the range you want to apply the formulas.


arrow blue right bubble Sum exclude strikethrough cells in Excel

Because the strikethrough cells are unused, here, I want to sum only the normal numbers without the strikethrough numbers. To solve this task, you also need a User Defined Function.

1. Hold down the ALT + F11 keys to open the Microsoft Visual Basic for Applications window.

2. Click Insert > Module, and paste the following code in the Module Window.

VBA code: Sum exclude strikethrough cells

Public Function ExcStrike(pWorkRng As Range) As Long
'Update 20140819
Application.Volatile
Dim pRng As Range
Dim xOut As Long
xOut = 0
For Each pRng In pWorkRng
    If Not pRng.Font.Strikethrough Then
        xOut = xOut + pRng.Value
    End If
Next
ExcStrike = xOut
End Function

3. Then save and close this code, go back to your worksheet, type this formula =excstrike(B2:B14) into a blank cell, and press Enter key, and you will get the summation of all the numbers without the strikethrough cells. See screenshot:

sum non strikethrough cells with user defined function

Note: In above formulas, B2:B14 is the range you want to sum cells without strikethrough format in.


Related articles:

How to sum / count bold numbers in a range of cells in Excel?

How to count and sum cells based on background color in Excel?

How to count / sum cells based on the font colors in Excel?

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!