Skip to main content

Search

Search

Breaking Up Entry With Carriage Returns Using Vb

Comments

1 comment

  • Avatar
    Domingo Rodriguez
    Moderator

    Once you've the value in one line, you could apply the following VBScript (having in mind that you will need a Paragraph text object in BarTender):

     

    value = Left (value, 3) & vbCrLf & Mid (value, 4, 3) & vbCrLf & Right (value, 4) 

    0

Please sign in to leave a comment.