Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
try to concatenate the image and country name..
Country &' ' & info(Image)
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
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
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
];
Find Attachment. May be it will help you without doing bundle load.
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