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: 
ranibosch
Creator
Creator

Filter on data

Hi,

I've got the following table:

       

Creation DayCreation MonthPosting DayPosting MonthItem NoDocument NumberPO Number
1Jun1JunPLWPEC002BGRN042628PO032791
1Jun30MayFRUCOC001GRN042678PO033054
1Jun30MayOIL03GRN042622PO032790
1Jun31MayL100X107-0065GRN042630PO032879
1Jun31MayL100X107-0118GRN042679PO032879
1Jun31MayPEC001CGRN042677PO033115
1Jun31MayPEC002C107126
1Jun31MayPEC002CGRN042677PO033115
1Aug1AugPBWALM005/100107166
1Aug1AugPBWALM005/100GRN043866PO033057
1Aug1AugPBWALM005/100GRN043868PO033057
1Aug27JulFRUAPPL002/001GRN043853PO033065
1Aug27JulFRUAPR002/001GRN043853PO033065
1Aug27JulFRUITMIX001GRN043853PO033065
1Aug27JulFRULOL001GRN043853PO033065
1Aug27JulFRUPEA001GRN043853PO033065
1Aug27JulFRUPEA003GRN043853PO033065
1Aug27JulFRUPEARGRN043853PO033065

How can  I filter this data on the object / script to show only document numbers that start with "GRN"?

I do not want to see the numbers highlighted in red.

1 Solution

Accepted Solutions
Anil_Babu_Samineni

In script:

Load * From Table where WildMatch([Document Number], 'GRN*');

OR

Load * From Table where [Document Number] Like 'GRN?';

In front end:

Only({<[Document Number] = {'GRN*'} >} [Document Number])

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

View solution in original post

3 Replies
shraddha_g
Partner - Master III
Partner - Master III

Add below condition in script

Load *

From ....Source

Where wildmatch("Document Number",'GRN*');

karthikoffi27se
Creator III
Creator III

Hi Rani

In Object level you can use the wildmatch like GRN*

Many Thanks

Karthik

Anil_Babu_Samineni

In script:

Load * From Table where WildMatch([Document Number], 'GRN*');

OR

Load * From Table where [Document Number] Like 'GRN?';

In front end:

Only({<[Document Number] = {'GRN*'} >} [Document Number])

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