This is common in all data's
Sub DemoNope()
For Each V In [{9,14}]
S$ = Worksheets("Input").Cells(V, 3).Value
SP = Split(S, ",")
S$ = S & vbLf & vbLf & "City : " & SP(0) & vbLf
If UBound(SP) Then
SP = Split(SP(1), ".")
S = S & vbLf & "Province : " & SP(0) & vbLf
If UBound(SP) Then S = S & vbLf & "Postal Code : " & SP(1)
End If
MsgBox S
Next
End Sub