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

Something like Custom Groups in Microstrategy

Hello,

What is my current status:

| Column1 | Column2 |

|      1       |    CAT     |

|      2       |    DOG    |

|      3       |    DOG    |

|      4       |    CAT     |

|      5       |    CAT     |

I want to add selection window witch two values: CAT and DOG.

After selecting CAT, only 1, 4 and 5 values should be selected and valid.

Is any easy way to do that?

Kind regards,

Pawel

1 Solution

Accepted Solutions
Nicole-Smith

4 Replies
Nicole-Smith

Use a list box.

Not applicable
Author

Ok, and now the second scenario:

I've got only one column

| Column1 |

|      1       |

|      2       |

|      3       |

|      4       |

|      5       |

there is no other column (CAT, DOG) with releted value like it was in first scenario. But I want still to make selection window with DOG and CAT values, and after clicking on CAT, only 1, 4 and 5 values should be selected and valid.

More complex, but is any easy way to manage that?

Nicole-Smith

You need to link two tables together in the load script in order to get those results.

Not applicable
Author

Or I can use If statement

If(Column1 = 1, 'CAT'...) as Something

Anyway. Thanks.