Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with Concatenate

Status
Not open for further replies.
Feb 20, 2001
24
US
Hi,
I was wondering if anyone could help me this. I have three fields that I want to Concatenate into one. Now I've used the Concatenate function to do this. However it does not seem to transfer styles, such as bold, into the new cell. The data in the first two cells is bold, and the last cell is not. Is there a way I can transfer the styles over as well?

Thanks in advance
 
You'll need to use vba code this will do what your talking about with a little tweeking:
Sub Testit ()
With Worksheets("Sheet1").Range("A1")
.Value = "abcdefg"
.Characters(3, 2).Font.Bold = True
End With

End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top