Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
nira
Contributor III
Contributor III

Hide Selection History

Is there an option in Qlik to hide the selection history at the top?

nira_0-1641852770998.png

For example, in this screenshot I have included, you can see the selection history at the top of the sheet. I would like to hide this from users, so that they wouldn't have to see the coordinates that have been selected. Is this possible?

Thanks

2 Replies
Digvijay_Singh

One way to hide specific fields from the selection bar is to tag them as hidden in the script, I think there are two ways to do it - 

1. TAG Fields Fieldnames With $hidden;

2. Change the field name to have some prefix  and use statement SET  HidePrefix='prefix char' in the script.

Thanks,

 

 

anat
Master
Master

Example:

set HidePrefix='_' ;

 

LOAD

ID AS _Key

'

'

FROM DataSource;