Hiya,
I have a column in my workbook that has IP addresses separated by ", " (comma space). I'm trying to pick out the last IP address (from the right of the cell) that starts with either one or more criteria.
I've managed to locate
to return the last IP address, but I'm having trouble finding one to bring me back the last IP that begins with "10." or "11."
I'd like to be able to use multiple beginning 1st octet(?). Presume this may require an array formula.
Many thanks all in advance for any help you can offer.
I have a column in my workbook that has IP addresses separated by ", " (comma space). I'm trying to pick out the last IP address (from the right of the cell) that starts with either one or more criteria.
I've managed to locate
Code:
=TRIM(RIGHT(SUBSTITUTE(A1,",",REPT(" ",LEN(A1))),LEN(A1)))
I'd like to be able to use multiple beginning 1st octet(?). Presume this may require an array formula.
Many thanks all in advance for any help you can offer.