How to Count Only Numbers in Bold in a Range of Cells in Excel

,

This post will guide you how to Count only numbers with bold style in a range of cells in Excel. How do I Count on cells with bold font within a range of cells using User defined function in Excel 2013/2016/2019/365.

1. Count  Only Numbers with Bold Font Style

Assuming that you have a list of data in range B1:B6, which contain some bold or normal numbers. and you wish to Count only numbers with bold font style, how to quickly count those number based on bold font style in the given range of cells in Excel. And this tuotrial will show you how to count only the bold numbers with a User Defined Function in your worksheet. Just do the following steps:

Step1# open your excel workbook and then click on Visual Basic command under DEVELOPER Tab, or just press ALT+F11 shortcut.

Get the position of the nth using excel vba1

Step2#  then the “Visual Basic Editor” window will appear.

Step3# click Insert ->Module to create a new module.

convert column number to letter3

Step4# paste the below VBA code into the code window. Then clicking Save button.

Count Only Numbers in Bold in a Range of Cells1
Function CountOnlyNumbersBold(myRange As Range)
    For Each myCell In myRange
        If myCell.Font.Bold Then
            myCount = myCount + 1
        End If
    Next
    CountOnlyNumbersBold = myCount
End Function

Step5# back to the current worksheet, then type the following formula in a blank cell , and then press Enter key.

=CountOnlyNumbersBold(B1:B6)
Count Only Numbers in Bold in a Range of Cells2

This function will perform the desired calculation and display the result. In the provided example, number “3” appears after running the function, showing the count of bold numbers in the specified range.

2. Video: Count  Only Numbers with Bold Font Style

This video tutorial will guide you how to Count only numbers with bold style in a range of cells using User defined function in Excel 2013/2016/2019/365.