ISBOLD

ISBOLD(value)
Returns whether a particular cell has been formatted in bold.

rgeCell

REMARKS
* Returns TRUE if the cell is bold or FALSE if it isn't.
* If you afterwards change the bold setting in the cell, you have to press Ctrl+Alt+F9 to have the formula recalculated.
* This function does not recognize formatting if it is applied via conditional formatting.

 A
1test

Public Function ISBOLD( _ 
         ByVal rgeCell As Range) _
         As Boolean

   If (rgeCell.Font.Bold) Then
      ISBOLD = True
   End If
End Function

© 2026 Better Solutions Limited. All Rights Reserved. © 2026 Better Solutions Limited TopPrevNext