=LEFT(A2,FIND(",",A2)-1)
=TRIM(LEFT(A2,FIND(",",A2)-1))
=TRIM(RIGHT(A2,LEN(A2)-FIND(",",A2)))
=IFERROR(ExtractIP($A2,COLUMNS($E2:E2),FALSE),"")
Function ExtractIP(Text As String, Instance As Long, Optional IPv4 As Boolean = True) As String
Static RegEx As Object
Dim oMatch As Object, oMatches As Object
If RegEx Is Nothing Then Set RegEx = CreateObject("VBScript.RegExp")
With RegEx
.Pattern = IIf(IPv4, "\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b", "\b(?:[A-F0-9]{0,4}:){5,7}[A-F0-9]{1,4}\b")
.Global = True
.IgnoreCase = True
On Error Resume Next
Set oMatches = .Execute(Text)
ExtractIP = oMatches(Instance - 1)
End With
End Function
You forgot to attach the file.