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: 
kiranpatil123
Contributor III
Contributor III

LIST BOX expression Based on selection

Hi all ,

Need help of this task .

I have a list box which has 3 fields as shown below .

I need one more list box which names MAT and All and SER in which if I select

MAT - only material should be selected from contract header

SER - only Service should be selected from contract header

All- all 3 fields should be selected from contract header ( Material and OverAll and Service)

Capture.PNG

1 Solution

Accepted Solutions
sunny_talwar

May be create a new Table in the script

LOAD * INLINE [

Contract Header, Groupings

Material, MAT

Service SER

Material, All

Service, All

OverAll, All

];

Now, use Groupings to make selections

View solution in original post

2 Replies
sunny_talwar

May be create a new Table in the script

LOAD * INLINE [

Contract Header, Groupings

Material, MAT

Service SER

Material, All

Service, All

OverAll, All

];

Now, use Groupings to make selections

kiranpatil123
Contributor III
Contributor III
Author

Thank You it worked