Find index position of a string in an array
Hi,
I’m easily able to return the value of a string in an array by it’s index position with the FIND function.
e.g. if array = [“hello”,”World”]
FIND(array,1) = “hello”
However, i’m struggling to understand how to do the inverse - finding the index position of a string in an array by the value of the string:
e.g. if array = [“hello”,”World”]
‘STRINGFIND’(array,”hello”) = 1
I’m sure this is quite simple and I’m just missing the correct function.
Thanks!