Results 1 to 3 of 3

Thread: [RESOLVED] How to show multiple lines string using formula

  1. #1

    Thread Starter
    Member
    Join Date
    May 2007
    Location
    Delhi
    Posts
    34

    Resolved [RESOLVED] How to show multiple lines string using formula

    Sir,

    I m trying to insert a string which is in multiple lines. Is there any keyword in CR equivalent to [vbcrlf] for showing other string to next line.

    Regards,
    Manish

  2. #2

    Thread Starter
    Member
    Join Date
    May 2007
    Location
    Delhi
    Posts
    34

    Resolved Re: How to show multiple lines string using formula

    I got the solution. I used [chr(13)] function to enforce string to next line.
    Thanx

  3. #3
    Frenzied Member
    Join Date
    Aug 2006
    Location
    India, Punjab, Bhatinda
    Posts
    1,689

    Re: [RESOLVED] How to show multiple lines string using formula

    chr(13) by itself does not perform the vbCrLf. you need to use
    Code:
    chr(10) & chr(13)
    in conjunction for proper result

Posting Permissions

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



Click Here to Expand Forum to Full Width