I’m trying to load a dynamic “list of texts” as an initial value for a multiselect dropdown. While a text csv is being accepted (with or without spaces after “,”), it will not accept the dynamic list (of the exact same text output) as the initial input. It seems to me that a “format as text” function would be appropriate here, but my format as operator is not providing me with a text option. How to I process this dynamic csv to get the appropriate output?
You may need to use split by
to convert the comma-delimited text string to a list of text values.