small question <@U5FCEEACA>; can I concat more tha...
# suitescript
t
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
Have you tested the concat operator "||" ? {taxitem.custrecord_debit_net1 || ', ' ||{taxitem.custrecord_debit_net2} Edit: assuming it's oracle sql
t
thanks Petter 🙂