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

QVD script error

Hi Friends,

i am getting error while creating QVD file using with variable.

Script line error:

set 'vQvdpath= 'E:\QlickView\QVD's\'

store Customer into $(vQvdpath)\hydcustomer.qvd (qvd);

can you pl. help me out.

thanks.

sunil

8 Replies
tripatirao
Creator II
Creator II

Hi,

Please check the colon '

set 'vQvdpath= 'E:\QlickView\QVDs\'

Now it will works

krishnacbe
Partner - Specialist III
Partner - Specialist III

Can you please share the error what you are getting?

sunny_talwar

May be try this

SET vQvdpath = 'E:\QlickView\QVD''s\'

Note that I have used 2 single quotes in red (Escape sequences)

vishsaggi
Champion III
Champion III

Try this:

LET vQvdpath= 'E:\QlickView\QVD'&Chr(39)&'s\';   'E:\QlickView\QVD's\'

store Customer into $(vQvdpath)hydcustomer.qvd (qvd);

marcus_malinow
Partner - Specialist III
Partner - Specialist III

Further to this it also looks like you're missing a semicolon after this instruction

SET vQvdpath = 'E:\QlickView\QVD''s\';

store Customer into $(vQvdpath)\hydcustomer.qvd (qvd);

rohitraut
Creator
Creator

Hello Sunil,

Try this ,

set vQvdPath= E:\QlickView\QVD's\;

store Customer into  $(vQvdPath)hydcustomer.qvd (qvd);

Or

set vQvdpath= ..\QVD's\ ;

store Customer into $(vQvdpath)hydcustomer.qvd (qvd);

Not applicable
Author

Hi All ,

             Thanks for your quick response ,

Now its Working .Thanks a Lot

Regards

-S

sunny_talwar

Great, please close the thread by marking the correct response and any helpful responses...

Best,

Sunny