Good Morning,
I have a report I used in the past to generate barcodes that have stopped working.
The report is set up to show my inventory description, price and part # with the barcode above it that is dictated by either my SKU or if there is no SKU from the manufacturer the part #. The following formula is what I have used.
if {UNIT_OF_MEASURE.UPC_ALTERNATE} = "" then
"*" + {INVENTORY.CODE} + "*"
else
"*" + {UNIT_OF_MEASURE.UPC_ALTERNATE} + "*"
I also have tried
if {UNIT_OF_MEASURE.UPC_ALTERNATE} = "" then
"*"&{INVENTORY.CODE}&"*"
else
"*"&{UNIT_OF_MEASURE.UPC_ALTERNATE}&"*"
and I also have tried
if {UNIT_OF_MEASURE.UPC_ALTERNATE}&"" then
"*"&totext{INVENTORY.CODE} + "*"
else
"*"&totext{UNIT_OF_MEASURE.UPC_ALTERNATE}&"*"
None of which have prevailed to work. I downloaded the Barcode functions from IDAutomation but I do not have Barcode fonts installed and am unsure if I need them. I did not have them in the past but the report was originally created by someone else that was with the company before me using only the first formula provided.
Can someone please help me to understand how to get this report working? Thank you.