What is the index of the first occurrence of value in list (a list that uses delim as the element separator)?
COUNT(
SPLIT(
ANY(
SPLIT(
(*delim* & *list* & *delim*),
(*delim* & *value* & *delim*)
)
),
*delim*
)
)
For example:
COUNT(
SPLIT(
ANY(
SPLIT(
(" , " & LIST(1, 2, 3, 4, 5) & " , "),
(" , " & 3 & " , ")
)
),
" , "
)
)
Or:
COUNT(
SPLIT(
ANY(
SPLIT(
(" , " & [EnumList] & " , "),
(" , " & [Enum] & " , ")
)
),
" , "
)
)