Consulting

Results 1 to 3 of 3

Thread: Solved: Help with concatenate

  1. #1
    VBAX Regular rrtts's Avatar
    Joined
    Sep 2006
    Posts
    61
    Location

    Solved: Help with concatenate

    I use the concatenate command to connect 7 cells of data while inserting some text along the way...which potentially results in a long string of text.

    Is there anyway to insert a Carriage Return/Line Feed or have it word wrap to get the desired look?

    Also, is it possible to have part of the field "bold" based on keywords.

    So...

    [vba]{=concatenate(A1,"/Section 1/",B1,"/Section 2/", C1,"/Section 3/" D1,"/Section 4/",
    E1,"/Section 5/", F1,"/Section 6/", G1)}[/vba]

    It would be great if I could bold A1 and word wrap at D1.

    Any ideas?

    Thanks!
    Last edited by rrtts; 10-25-2006 at 03:14 PM.

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    =CONCATENATE(A1,"/Section 1/",B1,"/Section 2/", C1,"/Section 3/",CHAR(10),D1,"/Section 4/", E1,"/Section 5/", F1,"/Section 6/", G1)
    can't do the bold though

  3. #3
    VBAX Regular rrtts's Avatar
    Joined
    Sep 2006
    Posts
    61
    Location
    No bold eh...I guess I live without it...thanks for the CHAR(10) though...I'll give it a shot.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •