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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
raadwiptec
Creator II
Creator II

All

I need to get get all data from source but want to skip few. For ex

Load all invoices data but not INVOICE name ending with 'LM'  and only one data ending with 'KLWEDLM'

Invoice name | ,~Number | Amount

5 Replies
sunny_talwar

May be this:

LOAD *

FROM ....

Where not WildMatch(INVOICE, '*LM') or INVOICE = 'KLWEDLM';

german24
Partner - Contributor III
Partner - Contributor III

Hi,

try this, e.g.

Table:

LOAD

     InvoiceName

FROM.......

WHRE Right(InvoiceName,2) <> 'LM' or InvoiceName LIKE '*KLWEDLM'

;

Best regards,

German

Anil_Babu_Samineni

Load all invoices data but not INVOICE name ending with 'LM'  and only one data ending with 'KLWEDLM'

LOAD *

FROM ....

Where not WildMatch(INVOICE, '*LM') or INVOICE = '*KLWEDLM';

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
sasiparupudi1
Master III
Master III

Load *

Resident YourTable

Where not WildMatch(INVOICE, '*LM') or WildMatch(INVOICE,'*KLWEDLM');

muthukumar77
Partner - Creator III
Partner - Creator III

Load *

Resident YourTable

Where WildMatch(INVOICE, '*LM') or WildMatch(INVOICE,'*KLWEDLM');

Muthukumar Pandiyan