Bold Font

rudevincy

Active Member
Joined
Feb 21, 2005
Messages
417
I have an text box in excel that is linked to a cell A4 on the same worksheet. Cell A4 says Top 6 of Rubbermaid brand, Rubbermaid is the Brand name and I would like it to be in bold font, it is also linked to a cell that has the list of Brands,

so cell A4 formula is = "Top 6 of "&A3&" brand"

How do I get the text box to keep the format of the cell? If this cannot be done in simple linking the text box to the cell, is it possible to do it in VBA code?

The name of the text box is Top6Brand

PLEASE HELP ME!
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
The syntax in VBA would be

Sheets("Sheet1").TextBox1.Font.Bold = True

adjust sheetname and textbox name accordingly
 
Upvote 0
this line of code bold the entire text bold however I only want the Brand name to be bolded. So olny the Rubbermaid should be bolded
 
Upvote 0
Shekira

The only way to do this is using VBA, and if you use that then you'll lose the formula.

Is that acceptable?
 
Upvote 0

Forum statistics

Threads
1,214,864
Messages
6,121,986
Members
449,060
Latest member
mtsheetz

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