Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
adiarnon
Creator III
Creator III

current selection


hi,

i have a few float fields.

they have only one selected value.

i want that the selection of those field will not shown in the current selection object.

how can i do that?

tnx

1 Solution

Accepted Solutions
Gysbert_Wassenaar

You can set a variable in the script to hide fields with a prefix. Fieldnames that start with this prefix are by default hidden in the dimension selection lists and also in the CurrentSelections box.

SET HidePrefix = '%';

MyTable:

Load A as %A, B, C

from ...somewhere...;

Now field %A will not show up in the CurrentSelections box if a selection is made in this field.


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

You can set a variable in the script to hide fields with a prefix. Fieldnames that start with this prefix are by default hidden in the dimension selection lists and also in the CurrentSelections box.

SET HidePrefix = '%';

MyTable:

Load A as %A, B, C

from ...somewhere...;

Now field %A will not show up in the CurrentSelections box if a selection is made in this field.


talk is cheap, supply exceeds demand
adiarnon
Creator III
Creator III
Author


hi,

i have a few float fields.

they have always one selected value.

i want that the selection of those field will not shown in the current selection object.

how can i do that?

tnx