I am trying to concatenate barcode in SSRS for the barcode to split out the fields so I can place them in the appropriate column. I need to get rid of the Box that appears in the Barcode. I assume it has to do with the separator somehow. I am using ASCII Code.
This is my expression.
Sorry, I thought you were trying to make two barcodes.
Which barcode format are you using?
As a test, set that expression to what you expect to get (like: ="*1.00~321*"), and see if that renders. Then try… ="*" + Format(...) + "~" + "321" + "*"
then ="*" + Format(...) + "~" + Format(...) + "*"
then ="*" + Format(...) + "%S" + Format(...) + "*"
BTW - partnumber is already a string, so no need for the Format(…partnum,"#"). In fact that would mess up if the PartNum isn’t just numerical digits.
Calvin -
Great thought on the BTW. That Was my problem. When I took the convert to string off the PartNum it worked. I will post a screenshot of what if trying to accomplish in a little bit.
Thanks!!