Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

where in load

hi,

how do i write in the script 2 differnt variable

i want that the load will be for field name SORTGROUP = 190 and 193

see exm ' the load is wrong as i write

...

   DEDUCTFILE as [number]

    Where SORTGROUP='190','193';

SQL SELECT *

...

thanks'

yarin

4 Replies
ogautier62
Specialist II
Specialist II

Hi

may be

Where SORTGROUP='190' or SORTGROUP='193';

is it the question ?

regards

Anonymous
Not applicable
Author

it is the question but your solution deosn't work.

it give me only 190

Anonymous
Not applicable
Author

sory my mistake ,

it's working.

thanks'

Chanty4u
MVP
MVP

or this

Where match(SORTGROUP,190,193)