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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
belalmos
Partner - Contributor II
Partner - Contributor II

Using buffer With QVD

good day

i'm trying to create qvd using buffer prefix but i get this error

"There is no open data connection."

any solution's

4 Replies
swuehl
MVP
MVP

And your script looks like ...?

belalmos
Partner - Contributor II
Partner - Contributor II
Author

LOAD

    Product,

    "Jan 2014",

    "Feb 2014",

    "Mar 2014",

    "Apr 2014",

    "May 2014",

    "Jun 2014"

FROM [lib://Tutorials source Scripting/Product.xlsx]

(ooxml, embedded labels, table is Product);

Buffer select * from Product;

swuehl
MVP
MVP

Try

BUFFER

LOAD

    Product,

    "Jan 2014",

    "Feb 2014",

    "Mar 2014",

    "Apr 2014",

    "May 2014",

    "Jun 2014"

FROM [lib://Tutorials source Scripting/Product.xlsx]

(ooxml, embedded labels, table is Product);

belalmos
Partner - Contributor II
Partner - Contributor II
Author

thank you

appreciate your help