Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
is there a way to export or transform Qlik Sense source files (like qvf) to make them available in Qlik View? or a creative way to avoid redeveloping everything in Qlik View
Thank you very much for your help!
Pierre
Impossible. But you can extract and export tables in QVDs. Write in final load script from your QVF.
For i=0 to nooftables() -1
let vTable =tablename(i);
store '$(vTable)' into path\$(vTable).qvd(qvd);
Next
Then load in QVW and design your objects.