Simple Excel Question: Bold / Not Bold in one cell

bradgar

Board Regular
Joined
Aug 29, 2011
Messages
78
Hi all,

I have some text that are Bold / Not Bold in one cell. I change the color of the cell and it looks fine. I save, close, re-open and the bold part has changed color. I have even tried to hard program so that it changes to my desired color at the end of my open procedure in VBA, but this doesn't even work.

Any ideas how to fix this?

EX: SOMETHING. The SOM stays the correct color on open, the ETHING changes color on open (All in one cell).
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Hi Bradgar,

It's very simple,all you have to do is to press Alt + F9 to open VBA Then Enter The Following Code in the Workbook and
Remember to type the cell address between the quotes.

Code:
Private Sub Workbook_Open()
Range("Type Cell Address Here").font.bold = True
End Sub

ZAX
 
Upvote 0
Thanks Zax, but please re-read my post.

I already have the VBA I need. The font is part bold, part not bold. The bold font's color changes on workbook open, which I do not want.
 
Upvote 0
Thanks Zax, but please re-read my post.

I already have the VBA I need. The font is part bold, part not bold. The bold font's color changes on workbook open, which I do not want.

Then can you share the code with us so we can know what the code is doing? and sorry for the very very late reply, I've been away for a while and now I'm back :D
 
Upvote 0

Forum statistics

Threads
1,223,904
Messages
6,175,295
Members
452,631
Latest member
a_potato

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