Issue with Utilizing Selected Values from Dynamic Multi-Select Filters in a Data Visualization Dashboard

We develop a dashboard for the visual analysis of data. For this purpose we use multi-select elements as filters. Since the input data sets have a variable number of different columns, we work with a metafile that defines the relevant columns as filters. To use these dynamically, we worked with a List object. Displaying the individual filters with the correct column names as well as the correct values works. Unfortunately, however, we cannot continue working with the selected values. We would like to continue working with variables on the basis of the selected values. Unfortunately, this does not work with the list.

As a workaround, we have now defined individual multi-select elements that are only displayed as filters in the metafile up to the maximum number of columns with the definition. This implementation allows us to continue working with the selected characteristics in the API request.

We wonder why this cannot be implemented through the list. It would be much more convenient and flexible to work with the list in this context. Do you have any experience or tips? Or is this a feature that still needs to be implemented? Thanks for an answer!

When inputs are in a repeated element (collection list, columns ecc) you need to keep track of the values (in your case the selected values of the multi-select) using variables and workflows.
This guide explains how to do it. This example is similar, but using checkboxes.
You can adapt the sam principle to work with the multi-select or any other input.

1 Like