Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Where instruction in qvd file

Hi,

I've little problem with "where" instruction.

So when i insert instruction  where POCHODZENIE = ('ACQ' or 'ACL') then reload script

without any errors but also without any select.

ACQ and ACL is correct value. Maybe my where instruction is wrong palced.

JAKOSC:

///* ANAGRGAFIKA ZARZĄDZENIOWA MATERIAŁÓW

LOAD ZAKŁAD,

     KOD,

     TYP_ZARZĄDZANIA,

     STATUS_ZARZĄDZANIA,

     POCHODZENIE,

     %_PRZYZNANIA,

     KLASA_ABC,

     TYP_KONTROLI,

     TYP_POBRANIA,

     ILOŚĆ_POJEMNIK,

     WYDZIAŁ,

     ODBIERAJĄCY,

     LINIA,

     TYP_POJEMNIKA,

     MA_COMPLESSIVO

FROM

PARMA_GM.QVD

(qvd)

where POCHODZENIE = ('ACQ' or 'ACL')

;

///* ANAGRGAFIKA TECHNICZNA MATERIAŁÓW

LEFT JOIN(JAKOSC)

LOAD KOD,

     OPIS_KODU,

     KOD_SKRÓCONY,

     RYSUNEK,

     TYP_MATERIAŁU,

     TYP_CZĘŚCI,

     KLASA_TOWAROWA,

     JM,

     WAGA,

     STATUS_TECHNICZNY,

     RODZINA,

     KLASA_TOWAROWA_ZAKUPU,

     KLASA_BIZNES

FROM

PARTI_GM.QVD

(qvd)

;

2 Replies
Not applicable
Author

Hi,

The where condition syntax is not correct, though qlikview does not throw any error here.

Try using

where POCHODZENIE = 'ACQ' or POCHODZENIE ='ACL'

Br,

Prasanna

sivarajs
Specialist II
Specialist II

Hi,

u acn also try this

where POCHODZENIE in ( 'ACQ','ACL')

Sivaraj S