Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Gowtham
Contributor III
Contributor III

How to Hide Calculated dimension expression from get current selection

Hi All,

I have created one calculated dimension with If else statement. when I used getcurrentselection() in the footer expression, I want to hide the expression. In the footer it was showing as If statement. Can anyone tell me how to hide the expression from get current selection?

1 Solution

Accepted Solutions
agigliotti
MVP
MVP

let's try changing your calc dim expression as below:
=aggr( If( Type = '$(vType)', Type ), Type )

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it

View solution in original post

4 Replies
agigliotti
MVP
MVP

Hi,
How your calc dimension looks like?

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it
Gowtham
Contributor III
Contributor III
Author

Hi,

My Calc Dimension = If(Type=$(vType),Type);

where $(vType) is frontend variable

Thanks

agigliotti
MVP
MVP

let's try changing your calc dim expression as below:
=aggr( If( Type = '$(vType)', Type ), Type )

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it
Gowtham
Contributor III
Contributor III
Author

It's working as expected. Now I can see Type instead of that expression in the filter

Thank you