Hello everyone,
Currently, I’m making some basic apps that function as a receipt and can print in a thermal printer.
I am able to print it using concatenate but hit some problems in terms of printing where the blank rows were using space during an actual print which is a waste of paper.
here are my simple codes:
concatenate(
"RECEIPT #: “,([RECEIPT#]),”
“,([DATE]),”
“,([NAME]),”
“,([ZONE]),”
“,([LOCATION]),”
“,”# OF ITEMS: “,([NUMBER OF ITEMS]),”
","WEIGHT: “,([WEIGHT]),”
“,([DISPATCH]),”
","CHARGES: “, ([CHARGES]),”
","TOTAL: “, ([TOTAL]),”
“,([PRICE 1]),”
“,([PRICE 2]),”
“,([PRICE 3]),”
“,([PRICE 4]),”
“,([PRICE 5]),”
",([PRICE 6]))
Now if all Prices rows from Prices 5-6 or more are not filled-in (meaning it’s blank) and it is, but that blank uses space during printing.
Is there any other way to avoid this?
Any help is highly appreciated

