Cell text format

  • Thread starter Thread starter grovesy
  • Start date Start date
G

grovesy

When you edit a cell in excel you can select any text you wish (Not th
entire cell) and make it bold. How do you do this in vb?

For example:

I am *so* great

Here, only the word "so" is in bold.

Any ideas?

Cheer
 
Range("*yourcellname*").Characters(-position of the first character i
the string-, -length or characters to select *includin
spaces*-).Font.Bold = True

for example
You have a cell (A1) named 'TestCell'. The words "Happy New Year" ar
inside.

Range("TestCell").Characters(7,3).Font.Bold = true

Would produce,

Happy *New* Year

Search for 'Characters Object' in VBA help, and it'll tell you al
about it.

-Gitcyphe
 
Cheers gitcypher,

That seams to be exactly what i'm after, haven't tried it yet but wil
have ago shortly.

Thanks agai
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top