Your text includes double quotes, so your formula breaks when it gets to plotWidget
because its’ wrapped in double quotes and is interpreting the first quote as the end of the first argument in your Substitute function.
Try using single quotes to enclose your HTML.
SUBSTITUTE(
'<span id="plopWidget"></span>...',
"XXX",
{product_id}&""
)
Your text includes double quotes, so your formula breaks when it gets to plotWidget
because its’ wrapped in double quotes and is interpreting the first quote as the end of the first argument in your Substitute function.
Try using single quotes to enclose your HTML.
SUBSTITUTE(
'<span id="plopWidget"></span>...',
"XXX",
{product_id}&""
)
You’re the best, thanks so much