Runtime error 1004 unable to set the bold property of the font class

Pookiemeister

Well-known Member
Joined
Jan 6, 2012
Messages
563
Office Version
  1. 365
  2. 2010
Platform
  1. Windows
Not shown: s is declared as a string and fr1 is declared as range
VBA Code:
s = ""
        If TypeName(ctrl) = "Frame" Then
            For Each cf In ctrl.Controls
                If "CheckBoxOptionButton" Like "*" & TypeName(cf) & "*" Then If cf.Value Then s = s & cf.Caption & ", "
            Next
            Select Case ctrl.Name
                Case Is = "frmTask"
                    s = Left(s, Len(s) - 2) & ":"
                    Cells(lLastRow, 9) = s
                    Set fr1 = Cells(lLastRow, "I").Find(s)
                    With fr1
                        .Characters(1, Len(s)).Font.Bold = True
                    End With
'
The error message is associated with this line of code:
Code:
 .Characters(1, Len(s)).Font.Bold = True
I'm not sure what I'm doing wrong. I followed the
syntax shown.
If you have any questions comments or concerns, please let me know. Thank you in advance.
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Is the sheet protected?
 
Upvote 0

Forum statistics

Threads
1,214,978
Messages
6,122,545
Members
449,089
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top