I have a select field and before, this was the select statement and it worked
SELECT
PartDescription, sc_concat(PartDescription, ' (Qty. ', QtyRequested, ')');
FROM
po_details
WHERE
PurchaseOrder = "[PO]"
I changed my datatable and now i need to do this, but it doesn’t work
SELECT
PartDescription, sc_concat(PartDescription, ' (Qty. ', QtyRequested, ')')
FROM
po_details
WHERE
PurchaseOrder = "[PO]"
UNION
SELECT
AltPartDescription, sc_concat(AltPartDescription, ' (Qty. ', AltQtyRequested, ')')
FROM
po_details
WHERE
PurchaseOrder = "[PO]"
I tried it without sc_concat and it works, so the problem is with sc_concat i believe. any ideas how to fix this?