Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to show all columns in Straight Table by default when we are using Ad-Hoc column selection

Hi All,

I have a straight table which contains 35 columns. I could able to achieve the ad hoc selection of columns. Is there any way it should show all the columns in straight table and once we select the column names from multi select box it should show those columns?

Abhijit

1 Solution

Accepted Solutions
sunny_talwar

May be add an over arching if condition

If(GetSelectedCount($Field) > 0, ......)

I am assuming you are using $Field to enable dimensions in your chart.

View solution in original post

3 Replies
sunny_talwar

May be add an over arching if condition

If(GetSelectedCount($Field) > 0, ......)

I am assuming you are using $Field to enable dimensions in your chart.

Not applicable
Author

Thanks you Sunny!

I used the following calculation condition:

If(GetSelectedCount(_columnName)>0, GetCurrentSelections())

Abhijit

sunny_talwar

Awesome