Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Team,
I want to exlude specific string in column where
Dealer invoice code is not equal to containing DI99 can you please tell me how to proceed.
Moreover also suggest how to serach string in search box containing specific substring.
Thanks,
Hi Deepak,
Try like this
[Dealer invoice code] Not Like '*DI99*'
Regards,
Jagan.
While loading use where condition like below
While [Dealer invoice code] <> 'DI99'
Type specific search substring in search box.
Bu this is not working an you please suggest other way for doing same
where
left(trim([Dealer Invoice code]),4)<>'D199';
hope this helps
Can you provide any sample for the same may be easy.
Hi Deepak,
Try like this
[Dealer invoice code] Not Like '*DI99*'
Regards,
Jagan.
Do like in script
Where NOT WildMatch( [Dealer invoice code],'*DI99*' )
you can use
wildmatch([Dealer invoice code],'*DI99*')=0
or
where not exists([Dealer invoice code],'DI99');
hope this helps
Hi
Can we use use like keyword in qlikview
i never found like keyword in qlikview.
Thanks
Sunil
Yes you can use, it is similar to LIKE in SQL.
Regards,
Jagan.