I'm trying to migrate from Qlikview to Qliksense an App.
My load script is as follows, iterating an excel to extract some GoogleDrive links:
[Links Pipeline]:
LOAD Practica,
[Link Google Docs]
FROM [lib://DATA/Links Pipeline.xlsx]
(ooxml, embedded labels, table is NEW);
FOR i=0 to NoOfRows('Links Pipeline')-1
LET link = peek('Link Google Docs', $(i), 'Links Pipeline');
LET practica = peek('Practica', $(i), 'Links Pipeline');
LOAD Date(Date#(Concepto,'MMM-YY')) as fecha,
[T/C EUR-USD] as [EUR-USD]
FROM [lib://$(link)]
(html, utf8, embedded labels, table is @1)
Then, in QLikSense i'm gettin an error, cause the lib structure of the FROM sentence, but i cant create the new connection neede in Sense, cause i dont even know the links.