Day(s)

:

Hour(s)

:

Minute(s)

:

Second(s)

How To Find The Nth Item In A Comma Separated List

Let’s say you have a column of data and in each cell you have a text string which is a list of items separated by a comma. Something like the below table.

 

How can you get the Nth item from that list? One solution would be to use text to column and actually separate out each list into different columns then use an INDEX function on those column. The problem with this is in the process you’ve destroyed the original list and it’s now across many different columns. A simpler solution might be to create a user defined function in VBA for this.

 

Function INDEXLIST(strList As String, strSeparator As String, lngIndex As Long) As String

Dim ListArray() As String

ListArray() = Split(strList, strSeparator)

INDEXLIST = ListArray(lngIndex - 1)

End Function

 

This code takes advantage of the visual basic Split function to do the “heavy listing” for us in separating our list into an array, then all we need to do is call the Nth array element.

 

Syntax

 

=INDEXLIST(List,Separator,Index)

  • List (required) – This is the list of delimited items.
  • Separator (required) – This is the delimiter that separates the items in the list.
  • Index (required) – This is the item index number which you want to return.

 

With this code we can obtain our Nth item from the list with this formula.

 

=INDEXLIST(B3,", ",C3)

 

 

Things to note about the INDEXLIST function.

  • If we input an index number greater than the number or items in the list or less than the number of items in the list the function will return a #VALUE! error.
  • If we use a non integer number, the function will round this to the nearest integer and return that item from the list.

 

A Formula Solution

 

It is possible to get the Nth item in a list using Excel’s built-in formulas but the solution I found is definitely not as elegant.

  • Use the SUBSTITUTE function to replace the N-1th occurrence of the separator “, ” with a character that is likely to not be used in any of the items in your list, CHAR(1) should be unlikely to appear in any data. Now we can use the FIND function to find the position of this CHAR(1) character. We repeat this logic on the Nth occurrence of the separator “, “.
  • Use IFERROR function to take care of when N is too big or too small.
  • Use LEN and MID function to return the text between these to separators.

 

=SUBSTITUTE(MID(B3,IFERROR(FIND(CHAR(1),SUBSTITUTE(B3,", ",CHAR(1),C3-1)),1),IFERROR(FIND(CHAR(1),SUBSTITUTE(B3,", ",CHAR(1),C3)),LEN(B3)+1)-IFERROR(FIND(CHAR(1),SUBSTITUTE(B3,", ",CHAR(1),C3-1)),1)),", ","")

 

It definitely isn’t pretty, but it works.

About the Author

John MacDougall

John MacDougall

John is a Microsoft MVP and qualified actuary with over 15 years of experience. He has worked in a variety of industries, including insurance, ad tech, and most recently Power Platform consulting. He is a keen problem solver and has a passion for using technology to make businesses more efficient.

Subscribe

Subscribe for awesome Microsoft Excel videos 😃

John MacDougall

I’m John, and my goal is to help you Excel!

You’ll find a ton of awesome tips, tricks, tutorials, and templates here to help you save time and effort in your work.

Related Posts

Comments

2 Comments

  1. Nilanjan

    Very nice approach. However there was a small limitation that if there is extra or less space along the delimiter than its defined then it throws an error. I have added TRIM function and removed the space along with comma as the delimiter to address that.

    INDEXLIST(TRIM([@List]),”,”,[@[Item Number]])
    INDEXLIST(TRIM(B3),”,”,C3)

    • John

      Thanks for the tip!

Get the Latest Microsoft Excel Tips

Follow Us

Follow us to stay up to date with the latest in Microsoft Excel!

Subscribe for awesome Microsoft Excel videos 😃