I am making a form that has a drop-down with multiple activities that have some of the same values. When I have the value fill another field I get a modified value that includes a _{n} if the value is attached to more than one activity as shown in the picture. What can I do to not have to combine activities and not have the modified value?
Question
Question
Answer
SELECTED ANSWER
replied on May 14, 2019
Hi Arron, this is expected behavior, Items listed in a drop down or their Values must be Unique. When it see's two of the same items, Forms add the _x to make them unique.
What would you List look like and how would different their values when you choose one?
If they are different Selectable items but require the same value, you can approach it in a couple different ways,
Add a unique character to the front of the value assigned to the drop down selection (just the value, not the name) and in the other field trim it off using a formula such as =MID(Dropdownfield,2,100). In the case it's in a table or Collection =MID(INDEX(Table.Dropdownfield,ROW()),2,100)
Or, you may have to make a small SQL table and pull the value from that via a lookup
0
0