Hello everyone, a question. I thank you in advance.
I have a table 1 with a list of values, that list is type “Enumlist” of BaseType Ref in another table 3.
I have another table 2 from where I need to select some of the items that are in that box.
What type should the column in table 2 be?
What expression should I use if lists are only available in virtual columns?
I will try to explain myself better:
I am in table 2 and I need to be able to select the content of a row in a column A of table 1.
In table 1, the column A that I want to select is of type enumlist, with which, I can bring these values by dereferencing column A [Table 1].[Column A]; I enter point because I need only one row and not the whole column; if I didn’t put point, all rows would be selected.
Now, once the row [Table 1].[Column A] is fetched, I get an enumlist full of values separated by a comma.
To these values I need to see them in the form of a list to choose 1 of all of them and I don’t want to choose more than one.
How I do this?
Thanks