Skip to main content
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
Partner - Champion
Partner - Champion

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

View solution in original post

4 Replies
agigliotti
Partner - Champion
Partner - Champion

Hi,
How your calc dimension looks like?

Gowtham
Contributor III
Contributor III
Author

Hi,

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

where $(vType) is frontend variable

Thanks

agigliotti
Partner - Champion
Partner - Champion

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

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