hexagon logo

Cell expressions in the header.

I need help... What cell expression should I add to get JOB NUMBER and PART NUMBER?

Thank you!

Parents Reply
  • I was messing with this more today, and we have part numbers that start with 0's. I converted the value to a string so it retains the 0's at the beginning of my number sequences. So you just add STR() around your variable statement.

    = "Part Number: " + STR(VARIABLE("V1"))
    
    = "Job Number: " + STR(VARIABLE("V2"))
    
    = "Operator Number: " + STR(VARIABLE("V3"))

    Anyone else who may stumble upon this, if you wish to use different variables just replace the V1, V2, and V3 variable names. They must be in quotes within the lambda expression

    VARIABLE("PARTNUM")

    VARIABLE("JOBNUM")

    VARIABLE("OPNUM")

Children