Skip to main content

How to identify and select all bold cells or text in Excel?

Normally you can format a cell’s content or text with font style Bold. Here comes a question, can we just quickly identify and select all cells which have been applied the bold font style? The following tutorials will help you easily identify and select all cells which contain bold content or text from a range in Excel quickly.

Identify and select all bold cells with Find command

Identify and select all bold cells with VBA code

Identify and select all bold cells with Kutools for Excel

Now we will show you the detailed steps to identify and select all bold cells in following range data. See screenshot:

doc-identify-bold-1


arrow blue right bubble Identify and select all bold cells with Find command

You can find and select all bold cells in a selection by the Find command.

Step 1: Select the range that you want to identify the bold cells in.

Step 2: Click the Home > Find & Select > Find to open the Find and Replace dialog box. You can also open the Find and Replace dialog box with pressing the Ctrl + H keys.

Step 3: In the Find and Replace dialog box, click the Format button. If you can't find out the Format button, please click the Options button first.

doc-identify-bold-2

Step 4: In the Find Format dialog box, under the Font tab, select the Bold in the Fond style box, and click OK. See the following screenshot:

doc-identify-bold-3

Step 5: Go back to the Find and Replace dialog box, click the Find All button. All bold cells in the selection are listed at the bottom of this dialog box.

doc-identify-bold-4

Step 6: Select all finding results with holding down the Ctrl + C keys. Now it selects all bold cells in the selection at once. See the following screenshot:

doc-identify-bold-5


arrow blue right bubble Identify and select all bold cells with VBA code

The following VBA code can also help you to select all bold cells in a selection immediately. Please do as this:

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

Step 2: Click Insert > Module, and paste the following macro in the Module Window.

VBA code: select all bold cells in a range

Sub SelectBold()
'update20131218
Dim Rng As Range
Dim WorkRng As Range
Dim OutRng As Range
On Error Resume Next
xTitleId = "KutoolsforExcel"
Set WorkRng = Application.Selection
Set WorkRng = Application.InputBox("Range", xTitleId, WorkRng.Address, Type:=8)
For Each Rng In WorkRng
    If Rng.Font.Bold Then
        If OutRng Is Nothing Then
            Set OutRng = Rng
        Else
            Set OutRng = Union(OutRng, Rng)
        End If
    End If
Next
If Not OutRng Is Nothing Then
    OutRng.Select
End If
End Sub

Step 3: Then press F5 key to run this code, and a prompt box will pop out to tell you to select a range that you want to use. See screenshot:

doc-identify-bold-6

Step 4: And then click OK, all the cells with bold values have been selected at once.


arrow blue right bubble Identify and select all bold cells with Kutools for Excel

If you have Kutools for Excel installed, the Select Cells with Format tool can help you select all bold cells in a specific selection quickly.

Kutools for Excel includes more than 300 handy Excel tools. Free to try with no limitation in 30 days. Get it Now.

Step 1: Click the Kutools > Select Tools > Select Cells with Format….

doc-identify-bold-7

Step 2: In the Select Cell with Format dialog box, do the following options:

doc-identify-bold-8


 1. Clickdoc-button-1 button to select the range  that you want to select all the bold cells.
 2. And then click Choose Format From Cell button to choose one cell that has bold value.
 3. In the attribute list box, check Bold option under Font section. And unchecked the other formatting options.

Step 3: Then click OK, and a prompt box will remind you selecting the matching cells or search again, and click Yes.

doc-identify-bold-9

Step 4: And all the cells which have the same bold formatting have been selected.

doc-identify-bold-5

The Select Cells with Format tool can selects cells with the same formatting from a range cells according to the formatting of the base cell or the base cell attributes. Click to know more…


Related article:

How to select cells based on color or formatting of another cell 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...

Description


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!
Comments (3)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
There is One excel sheet with records in each cell contain sentences , in this sentence of same cell some word are bold and remaining words are not , so we need to attach the <strong> before or after this Bold word.
Is it possible????????
This comment was minimized by the moderator on the site
I'm having trouble with Step6 on the first method. I can't copy all the cells due to "Command cannot be done used to multiple selections" This is such a pain!
This comment was minimized by the moderator on the site
The find method is so brilliant and simple... Thanks a ton
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations