Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Dear Friends
Please help me,I wrote function " Where " in edit script it is ok?
LOAD a,
b
FROM
[file.xlsx]
(ooxml, embedded labels, table is Sheet1);
Where a=3;
This is error
See attached please
Remove one semicolon
LOAD a,
b
FROM
[file.xlsx]
(ooxml, embedded labels, table is Sheet1) Where a=3;
Remove one semicolon
LOAD a,
b
FROM
[file.xlsx]
(ooxml, embedded labels, table is Sheet1) Where a=3;
Remove colon after "(ooxml, embedded labels, table is Sheet1);"
colon means end of the statement
Use colon (;) after your last code of the script ...
Thanks
Thanks
Glad to help you....
Hi Dear Friend
Please help me,
How to use Function " Where " in edit script If Read data from database ( SQL) ?????
Like this in Qlikview
LOAD Code as NEW_Code,
Name as NEW_Name;
SELECT Code,
Name
FROM [Table Name]
WHERE [Code] LIKE 'PIN' AND [Dimension Value Type] = 0;
And in SQL
SELECT Code,
Name
FROM [Table Name]
WHERE [Code] LIKE 'PIN' AND [Dimension Value Type] = 0;
You can use either one approach from below
Approach 1
Connection String .....
SQL SELECT a, b
FROM <Table-Name> Where a=3;
Approach 2
Connection String .....
LOAD * Where a=3;
SQL SELECT a, b
FROM <Table-Name>;
thanks my friend
Approach 2 is correct