Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'm trying to concatenate images in a chart and was wandering if anyone has come across a solution.
I've got the expression in straight table, as below:
CONCAT
(
IF( DRAMScore = 1, 'qmem://<bundled>/BuiltIn/led_g.png',
IF( DRAMScore = 2, 'qmem://<bundled>/BuiltIn/led_o.png',
IF( DRAMScore = 3, 'qmem://<bundled>/BuiltIn/led_r.png', 'qmem://<bundled>/BuiltIn/led_g.png')))
, ' ')
Representation is Image.
If it returns one result it shows the image, but if more than, it returns the string.
Any thoughts or ideas greatly appreciated.
Thanks
I doubt you can concatenate images. Try a traffic light gauge instead.
I think you can't concatenate images, but if you want to try, try it first directly using the string, ie your expression can return:
'qmem://<bundled>/BuiltIn/led_r.png qmem://<bundled>/BuiltIn/led_g.png' <-- this doesn't works
If you find some way to concatenate images I can help with the formula to build that string.
As a workaround you can do 3 expressions, one for each image.