Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi,
i write at the end of script like this :"
FROM
D:\QLIKVIEW\QVD\KAPCKLOG.QVD
(qvd)//;
where [מבצע השינוי] = 'A444';"
how do i add another value 'A444' and 'ABC' ?
thanks'
yarin.
Try,
Where Match(FieldName,'A444','ABC');
HI
Try like this
FROM
D:\QLIKVIEW\QVD\KAPCKLOG.QVD
(qvd)
where Match( [מבצע השינוי] ,'A444', 'ABC');
where match([מבצע השינוי] , 'A444','ABC')
You can use like like this alos
where [מבצע השינוי] = 'A444' and [מבצע השינוי] ='ABC' ;
but Match() function is the good option to use.
Regards
Rajesh Kumar