Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
I am using the following script for a filter pane to only show all the fields for a specific table for this example its all fields from Table_data_2 but when I select a field to filter on it removes all other options in the filter dropdown list. Ive also tried concat instead of only function and it does the same thing. I want them to be able to select multiple fields to filter on. When I use $Field for the filter it does not have this problem.
aggr(only({<$Table = {"Table_data_2"}>}$Field),$Field)
@Asuod_
see it like this
aggr(only({<$Table = {"Table_data_2"},Field=>}$Field),$Field)
Regarts, Matheus
@Asuod_
see it like this
aggr(only({<$Table = {"Table_data_2"},Field=>}$Field),$Field)
Regarts, Matheus
Thank you Matheus! Worked perfectly.