Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hello,
I have two text cells which I combine into one. This goes ok, but now I have to make part of the output in bold and part not. When I try to do this in the formula bar by selecting the specific part, the bold button remains grey. Anybody any suggestions ? Thank you |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can't format parts of a formula with different colours,
bold/italic/underline etc -- Regards, Peo Sjoblom "Evelyn" wrote in message ... hello, I have two text cells which I combine into one. This goes ok, but now I have to make part of the output in bold and part not. When I try to do this in the formula bar by selecting the specific part, the bold button remains grey. Anybody any suggestions ? Thank you |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You could do Copy PasteSpecial Values, to get rid of the formulas then do
formatting as you've described.......... Or, you could "simulate" something with code, but not maybe to your exact needs... Sub BoldMe() ActiveCell.Characters(Start:=5, Length:=5).Font.FontStyle = "Bold" End Sub Vaya con Dios, Chuck, CABGx3 "Evelyn" wrote: hello, I have two text cells which I combine into one. This goes ok, but now I have to make part of the output in bold and part not. When I try to do this in the formula bar by selecting the specific part, the bold button remains grey. Anybody any suggestions ? Thank you |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Fri, 8 Jun 2007 07:59:09 -0700, Evelyn
wrote: hello, I have two text cells which I combine into one. This goes ok, but now I have to make part of the output in bold and part not. When I try to do this in the formula bar by selecting the specific part, the bold button remains grey. Anybody any suggestions ? Thank you You can only differentially format actual text strings. There is no ability to do what you want with the result of a formula. You could execute the formula in a VBA Sub, and have the Sub write a text string to the cell, which could then be differentially formatted. But the contents of the cell must be a text string. --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Replace Function Removes Text Formats In Cell | Excel Discussion (Misc queries) | |||
use concatenate function to put carrage returns in a text string | Excel Worksheet Functions | |||
Custom number formats in TEXT function | Excel Worksheet Functions | |||
Using Concatenate function to generate text in Text Box | Charts and Charting in Excel | |||
number formats after concatenate | Excel Worksheet Functions |