Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Asuod_
Contributor III
Contributor III

Grouping/ Bucketing Columns Together

Hello,

I have a wide table and I'm looking group certain columns together into three groups (Location, Personnel And Skills). For example, by selecting Location it will filter the table to only Location columns (Zip code, Address, City).

Columns: Zip Code, Address, City - Location

Columns: Job, Gender - Personnel

Columns: Sales Experience, Merchandising, Management - Skills

Any help on how to do this is appreciated. Thank you!

Labels (4)
2 Replies
Qrishna
Master
Master

do you also have a fieldname called location, Personnel and Skills?

you could insert this piece in each respective group fields:

if(getselectedcount(Location)>=1, 1, 0) in the conditional show for all the three location fields. similarly do for others

Asuod_
Contributor III
Contributor III
Author

I do not have a fieldname called Location, Personnel and Skills. Those are the groups im looking to create,  can you elaborate on the if(getselectedcount(Location)>=1, 1, 0) not sure how this would filter out everything besides the location fields.