Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Looking to join within the same cell the contents of two cells, and
have lets say B1, display as is formatted in the originating cell? A1=Happy B1=Birthday (bolded) A2(the concatenating cell) will read "Happy Birthday" (with BIRTHDAY in bold) Happy remains unbolded. I found some code in another post to this group, but couldn't get it to work. TIA for any thoughts. Pierre |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You can format specific characters within a text string to be bold. However,
a formula is NEVER a text string to Excel. That means, if you want to do what you are talking about, you'll need to write your own, non-trivial, VBA code to combine and format the strings. "Pierre" wrote: Looking to join within the same cell the contents of two cells, and have lets say B1, display as is formatted in the originating cell? A1=Happy B1=Birthday (bolded) A2(the concatenating cell) will read "Happy Birthday" (with BIRTHDAY in bold) Happy remains unbolded. I found some code in another post to this group, but couldn't get it to work. TIA for any thoughts. Pierre |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On 24 Apr 2007 11:43:03 -0700, Pierre wrote:
Looking to join within the same cell the contents of two cells, and have lets say B1, display as is formatted in the originating cell? A1=Happy B1=Birthday (bolded) A2(the concatenating cell) will read "Happy Birthday" (with BIRTHDAY in bold) Happy remains unbolded. I found some code in another post to this group, but couldn't get it to work. TIA for any thoughts. Pierre As far as I know, you can only have differential formatting on a text string. So you would have to do your "concatenation" in a VBA routine, which would right a differentially formatted text string to the target cell. One method would be to use an event-triggered macro. But merely changing the font of a cell does not trigger a "change" event. Right click the sheet tab. Select View Code Paste the code below into the window that opens. ======================================= Option Explicit Private Sub Worksheet_Change(ByVal Target As Range) Dim rRes As Range Dim sTemp As String Dim rSrc1 As Range, rSrc2 As Range Dim bSrc1Bold As Boolean Dim bSrc2Bold As Boolean Set rRes = [a5] Set rSrc1 = [a1] Set rSrc2 = [b1] sTemp = rSrc1 & " " & rSrc2 With rRes .Value = sTemp .Characters(1, Len(rSrc1.Text)).Font.Bold = rSrc1.Font.Bold .Characters(Len(rSrc1.Text) + 2, Len(rSrc2.Text)).Font.Bold = rSrc2.Font.Bold End With End Sub ===================================== --ron |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Apr 24, 3:23 pm, Ron Rosenfeld wrote:
On 24 Apr 2007 11:43:03 wrote: Looking to join within the same cell the contents of two cells, and have lets say B1, display as is formatted in the originating cell? A1=Happy B1=Birthday (bolded) A2(the concatenating cell) will read "Happy Birthday" (with BIRTHDAY in bold) Happy remains unbolded. I found some code in another post to this group, but couldn't get it to work. TIA for any thoughts. Pierre As far as I know, you can only have differential formatting on a text string. So you would have to do your "concatenation" in a VBA routine, which would right a differentially formatted text string to the target cell. One method would be to use an event-triggered macro. But merely changing the font of a cell does not trigger a "change" event. Right click the sheet tab. Select View Code Paste the code below into the window that opens. ======================================= Option Explicit Private Sub Worksheet_Change(ByVal Target As Range) Dim rRes As Range Dim sTemp As String Dim rSrc1 As Range, rSrc2 As Range Dim bSrc1Bold As Boolean Dim bSrc2Bold As Boolean Set rRes = [a5] Set rSrc1 = [a1] Set rSrc2 = [b1] sTemp = rSrc1 & " " & rSrc2 With rRes .Value = sTemp .Characters(1, Len(rSrc1.Text)).Font.Bold = rSrc1.Font.Bold .Characters(Len(rSrc1.Text) + 2, Len(rSrc2.Text)).Font.Bold = rSrc2.Font.Bold End With End Sub ===================================== --ron Ron, Getting a syntax error, with "Private Sub Worksheet. . ." in yellow, and ".Characters(Len. . ." line appearing in red from the paste. Entering any characters into A5, A1, or B1 will produce the error. Thanks for your time and effort. Pierre |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Join bold and non-bold text in one cell | Excel Discussion (Misc queries) | |||
In Excel 2003, I cannot display the toolbar with BOLD,UNDERLINE | Setting up and Configuration of Excel | |||
concatenate cells from a column and paste to a cell | Excel Discussion (Misc queries) | |||
Can you keep a cells BOLD Font, cell color size | Excel Discussion (Misc queries) | |||
How can I cause a cell which is hyperlinked to to display in bold. | Excel Worksheet Functions |