Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
How can i get the field value from variable in script.
for example:
In excel , i am loading the below format in the column
column name : QVDField
$(vdatapath)abc.qvd
$(vdatapath1)def.qvd
$(vdatapath)xyz.qvd
Let vdatapath=\\1\storedata\;
Let vdatapath=\\2\storedata1;
i would like to expect value format is \\1\storedata\abc.qvd (that mean $(vdatapath)abc.qvd - field value and qvd filename) in script.
Any idea or suggestion ?
Are you doing the "Let" before you reference the variable?
Are you doing the "Let" before you reference the variable?
If you are using LET, you need to quote the path:
Let vdatapath= '\\1\storedata\';
or
Let vdatapath= '\\2\storedata1';
Then
LOAD ...
FROM $(vdatapath)abc.qvd (qvd);
yes.... before I assigned the LET Vsriable.