The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have column "Country" that shows column name and column "Flag" that shows flaf of the country. This works well however in my table this shows as separate column while I would like to show it as single column. Is there a way to concatinate these two fields as one while still render URL image of the flag. Data category of the flag field is URL image.
Solved! Go to Solution.
Hi @stribor45
Hi @stribor45
Combining a text with an image url will result to just a text even if the combination is categorized as an image URL
You will need to use a set of images with country and flag name together. In the past, I tried combining an external image url with a text within an SVG code but external images were not being rendered, however, base64 images were. This vlog shows a good example of combining a base64 image with a text while still being able to render the combination as an image - https://www.youtube.com/watch?v=ylUhYBeEV3I
Hi @stribor45
Hi @stribor45
Combining a text with an image url will result to just a text even if the combination is categorized as an image URL
You will need to use a set of images with country and flag name together. In the past, I tried combining an external image url with a text within an SVG code but external images were not being rendered, however, base64 images were. This vlog shows a good example of combining a base64 image with a text while still being able to render the combination as an image - https://www.youtube.com/watch?v=ylUhYBeEV3I
yeah this is good solution thank you.