Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hello,
i search an equivalent to "clause in" in qlikview
i would like do that
load *
FROM mytable
where Field1 in (A1,A2,A5);
Hi,
use this script
load *
FROM mytable
where match(Field1, A1,A2,A5)>0; This Script helpful for Your Requirement .
Hi,
use this script
load *
FROM mytable
where match(Field1, A1,A2,A5)>0; This Script helpful for Your Requirement .