However, it’s giving me this error when I try to upload
I tried removing First prefix on the expression, removing the dataset reference but I still get this error. Please advise!
In our barcode fields, we use the fields : Calc_BCJobNum and Calc_BCPartNum. IDK if they do something special to the values to make them barcodeable. Try concatenating those together.
If you are in the header or footer or outside of the grid area you see highlighted in your image you would need some Code similar to this to update items outside of the Tablix:
Public Function SetVarBcJobNum(CalcBCJobNum as String) as String
If (CalcBCJobNum <> nothing) then
SetValue("varBcJobNum", CalcBCJobNum)
End if
Return GetValue("varBcJobNum")
End Function
Public Function SetVarPartNum(PartNum as String) as String
If (PartNum <> nothing) then
SetValue("varPartNum", PartNum)
End if
Return GetValue("varPartNum")
End Function