Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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.
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.
Thanks you Sunny!
I used the following calculation condition:
If(GetSelectedCount(_columnName)>0, GetCurrentSelections())
Abhijit
Awesome