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

Filtered data table

I have a data set consisting of Order Type, Order Number, Release, Customer Name, Part Number, Quantity, and Requested Ship Date. The possible values for Order Type are A, B, and C. I want to create a table that only shows the data for order type B and I do not need to calculate anything - Just display the relevant data.

1 Solution

Accepted Solutions
Anonymous
Not applicable

see attached and modify as needed.

View solution in original post

5 Replies
ashfaq_haseeb
Champion III
Champion III

Hi,

Try below

Load

[Order Type],

[Order Number],

Release,

[Customer Name],

[Part Number],

Quantity;

sql select * From table

where [Order Type] ='B'


Regards

ASHFAQ

hobanwashburne
Creator
Creator
Author

I need the complete data set for other charts, but for one specific table I only want to display a specific order type.

Anonymous
Not applicable

you probably are referring to set analysis...something like sum({<[Order Type] = {"B"}> Quantity)...but you may want to elaborate more on your requirement and what your expected output looks like and if this output is in a chart/table, etc.

hobanwashburne
Creator
Creator
Author

Please see attached

Anonymous
Not applicable

see attached and modify as needed.