Wednesday, 26 July 2017

Choose Function in Excel



Summary

The Excel CHOOSE function returns a value from a list using a given position or index. For example, CHOOSE(1,"Pass","Fail","Grace") returns "Pass", since blue is the 1st value listed after the index number. The values provided to CHOOSE can include references.


Purpose
Get a value from a list based on position
 
Return value
The value at the given position.
Syntax
=CHOOSE (index_num, value1, [value2], ...)
 
Arguments
index_num - The value to choose. A number between 1 and 254.
value1 - The first value from which to choose.
value2 - [optional] The second value from which to choose.

No comments:

Post a Comment

Lookup Function

This function is useful when we want to get the approximate match of any value. Summary  The Excel LOOKUP function performs ...