Extract nth element from comma-delimited list with Google Sheets formula

Viewed 42
2 Answers

use:

=INDEX(SPLIT(A1, ","),, B2)

where B2 is value with position

enter image description here

From @Dhiraj:

Try "=INDEX(SPLIT(B4,","),0,1)" so it will split data as row and provide u value of the given position. =INDEX(SPLIT(,","),0,)

Related