ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   BOLD WORDS IN CONCATENATE FORMULA (https://www.excelbanter.com/excel-worksheet-functions/270792-bold-words-concatenate-formula.html)

dpk

BOLD WORDS IN CONCATENATE FORMULA
 
Word Cell
My Name A1
Deepak A2


@CONCATENATE( A1"-"A2)

I WANT A RESULT Deepak shown BOLD


Ron Rosenfeld[_2_]

BOLD WORDS IN CONCATENATE FORMULA
 
On Mon, 9 May 2011 05:17:05 -0700 (PDT), dpk wrote:

Word Cell
My Name A1
Deepak A2


@CONCATENATE( A1"-"A2)

I WANT A RESULT Deepak shown BOLD


You will need to convert this to text first. It can be done with a macro, but more info is needed to suggest good design.

Don Guillett[_2_]

BOLD WORDS IN CONCATENATE FORMULA
 
On May 9, 7:17*am, dpk wrote:
Word * * * *Cell
My Name *A1
Deepak * * A2

@CONCATENATE( A1"-"A2)

I WANT A RESULT *Deepak shown BOLD


Sub putemtogetherandbold()
mybreak = Len(Range("a1")) + 1
Range("a3") = Range("a1") & "-" & Range("a2")
Range("a3").Characters(mybreak, 256).Font.Bold = True
End Sub


All times are GMT +1. The time now is 12:08 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com