small question @heckytect; can I concat more than 2 values (i would like to add a comma in between)? because when I do that CONCAT({taxitem.custrecord_debit_net1} , ', ' , {taxitem.custrecord_debit_net2}) it doesn't work.
p
Petter
03/05/2018, 12:24 PM
Have you tested the concat operator "||" ? {taxitem.custrecord_debit_net1 || ', ' ||{taxitem.custrecord_debit_net2}
Edit: assuming it's oracle sql