how does netsuite "formula (text)" concatenation w...
# general
j
how does netsuite "formula (text)" concatenation work? why is my formula invalid? concat('athq.com/search?brand=',{custitem_awa_custom_parent.custitem_awa_brand},'&type=',{custitem_awa_custom_parent.custitem_awa_type})
r
You can try using pipes e.g. {custitem_awa_custom_parent.custitem_awa_brand}||{custitem_awa_custom_parent.custitem_awa_type}
I've used this for generating a URL (actual URL removed) '<a href="url=' || SUBSTR({entityid},1,3) || '%23' || SUBSTR({entityid},5,5) || '&custrecord_nn_nps_contact='||{contact.custentity_nn_con_nps_id}||'">Text</a>'
j
awesome! it works!