I have a multiple selection list box that is receiving data from a repeating table with preset default values. It looks somewhat like this.
[] Item 1
[] Item 2
[] Item 3
The values assigned to the selections are setup like this.
Item 1 = 5
Item 2 = 5.00
Item 3 = 5.000
What I'm trying to accomplish is when this data gets published to the document library, in a separate field I would like the text to be returned of the items selected, but instead what I'm getting is the values returned. So I'm seeing the data like this
Separate Field: 5; 5.00; 5.000 and would I would like to see is Separate Field: Item 1; Item 2; Item 3
I'm using the following formula eval(eval(Field, 'concat(., " ", " ; ")'), "..")
I have seen this formula work in another form created by someone else, but I cannot for seem to replicate how it's setup. eval(eval(ListItem[Value = Field]/Display, 'concat(., " ", " ; ")'), "..")
The issue I seem to be having is implementing this ListItem[Value = Field]/Display. I mean it makes sense to what it's pointing to on the repeated table items but I can't seem to identify how to set that up.