Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Inserting Data with image in the same cell

Hi All,

I want to insert the data with the image in the same cell for example if i want country name and the country flag in the same cell.I tried by using image info but iam getting only the flag image not the country name.Kindly help.

Thanks & regards,

Sivakumar

6 Replies
israrkhan
Specialist II
Specialist II

try to concatenate the image and country name..

Country &' ' & info(Image)

Anonymous
Not applicable
Author

Hi IsrarKhan,

This is the code i have tried can you please check it.iam not getting the result.

ImagesTable:

BUFFER INFO LOAD * INLINE [

National Team,ImagesPath

Argentina,D:\Project\flags\arg_002.png

Brazil,&''&,D:\Project\flags\bra_002.png

Czechoslovakia,D:\Project\flags\civ_002.png

England,D:\Project\flags\eng_002.png

France,D:\Project\flags\fra.png

Germany,D:\Project\flags\ger.png

Hungary,D:\Project\flags\hung.png

Italy,D:\Project\flags\ita_002.png

Netherlands,D:\Project\flags\ned.png

Spain,D:\Project\flags\esp.png

Sweden,D:\Project\flags\sweden.png

Uruguay,D:\Project\flags\uru.png

];

Thanks & Regards,

Sivakumar

rohan_mulay
Partner - Creator
Partner - Creator

Hii SivaKumar,

I tried your code, but after reloading the app I can just see a single field 'National Team' and no Image path filed

Not applicable
Author

Within the same cell i don't think is possible as it is image or text

Create 2 text objects

One ................=Country & ' - ' &

Two ................='qmem://[National Team]/'&[National Team]

Use this as your backend load script

ImagesTable:

BUNDLE LOAD * INLINE [

National Team,ImagesPath

Argentina,D:\Project\flags\arg_002.png

Brazil,&''&,D:\Project\flags\bra_002.png

Czechoslovakia,D:\Project\flags\civ_002.png

England,D:\Project\flags\eng_002.png

France,D:\Project\flags\fra.png

Germany,D:\Project\flags\ger.png

Hungary,D:\Project\flags\hung.png

Italy,D:\Project\flags\ita_002.png

Netherlands,D:\Project\flags\ned.png

Spain,D:\Project\flags\esp.png

Sweden,D:\Project\flags\sweden.png

Uruguay,D:\Project\flags\uru.png

];

jsingh71
Partner - Specialist
Partner - Specialist

Find Attachment. May be it will help you without doing bundle load.

Anonymous
Not applicable
Author

HI Rohan,

I have attached the screen shot and i have fetched data from excel file and the path for the image form my local system