Hi Community,
I simplify my scenario a little bit, but imagine I have a collection:
ColNames = [Bob, Jack, John, James]
and a label that displays one of these 4 different names.
What formula can I use to get the position of the name displayed in the collection?
For example, I want:
when the label reads "Jack", position_index = 2
when the label reads "John", position_index = 3
when the label reads "James", position_index = 4
etc. (my collection is much larger in reality and everything is dynamic so hard-coding is not an option)