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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to select only particular values in the field in script editor?

Here is the list box and I need to display only the "F/A" data's other data values shouldn't display. I need to restrict this in script editor. Can somebody help me?

Capture.PNG

1 Solution

Accepted Solutions
amit_saini
Master III
Master III

Hi,

Try this:

Where match(Your_Field,'*F/A*') ;


Thanks,

AS

View solution in original post

4 Replies
Not applicable
Author

Hi Murali,

use wildmatch in your script to reduce down your data.

Where wildmatch([Field Name], '*F/A*')

Hope that helps

Joe

PrashantSangle

Hi,

Try with wildmatch() and special character *

where wildmatch([Field Name], '*F/A*')

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
amit_saini
Master III
Master III

Hi,

Try this:

Where match(Your_Field,'*F/A*') ;


Thanks,

AS

hariprasadqv
Creator III
Creator III

Use one of the match(wild match is prefered) with where condition.