that depends on how you'd like to split it...
If you just want it to show three sets of lines, you can enter the
information and use ALT+Enter to add a new line within the same cell.
If you want to break it based on, say, a space, you can do..
=LEFT(A2,find(" ",A2))
=mid(A2,find(" ",A2),find(" ",A2,find(" ",A2)+1))
=right(A2, len(a2)-find(" ",A2,find(" ",A2)+1))
or, if just a set number of characters,
=LEFT(A2,3)
=mid(a2,4,3)
=right(A2,len(a2)-6)