Zum Hauptinhalt gehen

Suche

Suche

Merging Data Into One Barcode

Kommentare

2 Kommentare

  • Avatar
    Legacy Poster
    Hi, I'm also a newbie here. I just want to share since this might be something you're looking for.
    Here's what we do to concatenate the fields:

    1. Create a field
    2. Set data source as "Visual Basic Script" and the type as "Multi-line Script"
    3. Click Edit. Then you can have something like this:

    val1 = Format.Objects("Field1").Value
    val2 = Format.Objects("Field2").Value
    val3 = Format.Objects("Field3").Value
    val4 = Format.Objects("Field4").Value

    Value = val1 + "-" + val2 + "-" + val3 + "-" +val4
    0
  • Avatar
    Ian Cummings
    Moderator
    It's easier if you just create multiple data sources (A.K.A. sub-strings) for the barcode object.
    0

Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.