Search code examples
excelvba

How to set specific text as bold via VBA


I want to set bold some text in string. How can I do it?


Solution

  • By using Characters.

    Range("A1").Characters(8, 5).Font.Bold = True