I have a text-list with IDs and string values:
ID Value
0 Nothing
1 A
2 B
3 C
I have a combo box that's referencing a defined enumeration (i.e. A is 1, B is 2, C is 3, etc). However, when I drop in a combobox into visualization and reference the enumeration, I see the IDs (1, 2, 3, etc) instead of the string values (A, B, C, etc). I get the same result even if I change the text-list to use enumeration "test" and reference it from combobox:
ID Value
0 Nothing
test.A A
test.B B
test.C C
Maybe I'm doing something wrong?
Thanks,
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have a text-list with IDs and string values:
ID Value
0 Nothing
1 A
2 B
3 C
I have a combo box that's referencing a defined enumeration (i.e. A is 1, B is 2, C is 3, etc). However, when I drop in a combobox into visualization and reference the enumeration, I see the IDs (1, 2, 3, etc) instead of the string values (A, B, C, etc). I get the same result even if I change the text-list to use enumeration "test" and reference it from combobox:
ID Value
0 Nothing
test.A A
test.B B
test.C C
Maybe I'm doing something wrong?
Thanks,