Finds the value located at a specified index
CHOOSE( index, value1, [value2...] )
index
value1
value2
Returns the element within value list located at index
value
Input
Description
index to search for within list of values
Value to return if its index matches index
[value2...]
Additional values in value list
Returns the value associated with the provided index
CHOOSE(3, "Alabama", "Alaska", "Arizona", "Arkansas") = "Arizona"
Last updated 4 years ago
Was this helpful?