Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Cannot Link File (Flags) from tutorial

Hi

Working step by step with the TUTORIAL


In Chapter 15 'Linking External Information To A Document' from the TUTORIAL  I cannot link to the flags from FLGSOECD.CSV

SampleApplication.qvw provided works perfectly

Even Copying SCRIPT from sampleapplication.qvw to another qvw does not work:

=> data loads correctly, but still, not flags is displayed when clicking 'i'  in top right window title bar

=> Only 'Graphics\can.bmp' text is displayed (when selecting Canada for example)

How come the origina works and not the copy?

What do I miss?

Thanks

--SCRIPT:

SET ThousandSep=',';

SET DecimalSep='.';

SET MoneyThousandSep=',';

SET MoneyDecimalSep='.';

SET MoneyFormat='$#,##0.00;($#,##0.00)';

SET TimeFormat='hh:mm:ss';

SET DateFormat='M/D/YY';

SET TimestampFormat='M/D/YY hh:mm:ss[.fff]';

SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';

SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';

LOAD Country,

     Capital,

     [Area(km.sq)],

     [Population(mio)],

     [Pop. Growth],

     Currency,

     Inflation,

     [Official name of Country]

FROM

(txt, codepage is 1252, embedded labels, delimiter is ',', msq);

LOAD Country,

     Capital,

     [Area(km.sq)],

     [Population(mio)],

     [Pop. Growth],

     Currency,

     Inflation,

     [Official name of Country]

FROM

(txt, codepage is 1252, embedded labels, delimiter is ',', msq);

CONCATENATE LOAD Country,

     [Official name of Country],

     [Area(km.sq)]

FROM

(txt, codepage is 1252, embedded labels, delimiter is ',', msq);

LOAD [Customer ID],

     Customer,

     Address,

     City,

     Zip,

     Country

FROM

(biff, embedded labels, table is CUSTOMER$);

INFO LOAD Country,

          I

FROM ( txt, codepage is 1252, embedded labels, delimiter is ',', msq);

1 Reply
swuehl
MVP
MVP

I don't have the tutorial sample at hand, but maybe you need to change the representation option (e.g. in a text object on general tab) from "text" to "image"? And make sure that the path to your image from your current path will be valid.

Hope this helps,

Stefan