Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I am new to Qlikview..
facing a peculiar problem. While loading DATA from XL sheet , Peek command is working properly but the same data if i am loading from a qvd file, Peek command is not working I am using the following code
MYTBL:
LOAD FYR,
QVNM
FROM
MYTBL.xls
(biff, embedded labels, table is Sheet1$);
LET Q=Peek('QVNM',3);
LET Q=Peek('QVNM',0);
LET Q=Peek('QVNM',1);
// above command are working properly
DROP TABLE MYTBL;
MYTBL1:
NOCONCATENATE
LOAD * FROM MYTBL.QVD (qvd);
// below 3 command are not working !!! (even if I remove MYTBL load commands TOTALLY)
LET Q=Peek('QVNM',3);
LET Q=Peek('QVNM',0);
LET Q=Peek('QVNM',1);
attaching qvd file ... Any idea?
Hi
Its working.
check this qvw application.....
-Sathish
Hi
I have no problem running the script below with your QVD file:
MYTBL1:
LOAD * FROM MYTBL.QVD (qvd);
LET Q=Peek('QVNM',3);
LET Q=Peek('QVNM',0);
LET Q=Peek('QVNM',1);
The peek commands are working fine.
Jonathan
Thanks, it is working.
I hope something is wrong with my QVW file. I created a new application , it is working now
thanks