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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to have selective data in a List Box

Hi,

I am using Quickbooks advanced reporting which is powered by Qlikview, I am trying to use a listbox [Item.Full Name].

Yet we have many items that we do not want on the list box. is there a way i can select just the items i want to be shown in the listbox?

This is the expression I have entered into the List Box Field.

=If([Item.Full Name]='SH318CKASS','SH318FASS','SH318RVASS','SH318SKASS',[Item.Full Name])

This returns an Error.

Thank you very much,.

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

Just a small correction Anil, Close the bracket for Match after last value like

= If(Match( [Item.Full Name] , 'SH318CKASS','SH318FASS','SH318RVASS','SH318SKASS' ) , [Item.Full Name] )

View solution in original post

4 Replies
Anil_Babu_Samineni

This?

=If(Match([Item.Full Name]), 'SH318CKASS','SH318FASS','SH318RVASS','SH318SKASS',[Item.Full Name])

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
Not applicable
Author

Thank you very much

vishsaggi
Champion III
Champion III

Just a small correction Anil, Close the bracket for Match after last value like

= If(Match( [Item.Full Name] , 'SH318CKASS','SH318FASS','SH318RVASS','SH318SKASS' ) , [Item.Full Name] )

Anil_Babu_Samineni

Awesome, Please close this thread by flag correct answer

Qlik Community Tip: Marking Replies as Correct or Helpful

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