Hi guys,
I am trying to build a dynamic SVG with a concatenate, this works:
But this does not:
CONCATENATE("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 420'><rect x='10' y='10' width='220' height='20' stroke='white' stroke-width='1' fill='none'/></svg>")
Solved! Go to Solution.
Ahh!! You are right! I remember this but when dealing with a Webhook JSON body, that's why I didn't make the relation to it.
Try adding a space after the apostrophe:
CONCATENATE(
"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 420'><rect x=' ",
[etiqueta_x],
"' y=' ",
[etiqueta_y],
"' width='220' height='20' stroke='white' stroke-width='1' fill='none'/></svg>"
)
User | Count |
---|---|
18 | |
10 | |
8 | |
6 | |
5 |