View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Don Guillett[_2_] Don Guillett[_2_] is offline
external usenet poster
 
Posts: 1,522
Default 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