Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
qv_testing
Specialist II
Specialist II

current selectionbox

Hi All,

I have current selection object, if i am select any it displays in current selection

but i don't want to display date filed

is it possible.........

Thanks..............

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Yes, in the script add a line

SET HidePrefix = '%';

Then rename the field you want to hide in the current selections box by prefixing it with a %:

Load

    FieldA,

    FieldB,

    Date as %Date

From ...mysource...;

Then reload the data. Your Date field is now renamed to %Date and won't be shown in the current selections box. The %Date field also won't be visible in dialogs where you can select a field until you enable the option Show System Fields.

You can use any character you want as prefix. Simply adjust the HidePrefix variable accordingly.



talk is cheap, supply exceeds demand

View solution in original post

1 Reply
Gysbert_Wassenaar

Yes, in the script add a line

SET HidePrefix = '%';

Then rename the field you want to hide in the current selections box by prefixing it with a %:

Load

    FieldA,

    FieldB,

    Date as %Date

From ...mysource...;

Then reload the data. Your Date field is now renamed to %Date and won't be shown in the current selections box. The %Date field also won't be visible in dialogs where you can select a field until you enable the option Show System Fields.

You can use any character you want as prefix. Simply adjust the HidePrefix variable accordingly.



talk is cheap, supply exceeds demand