Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub split()
bob$ = ActiveCell.Value
ActiveCell.Offset(0, 1).Value = Left(bob$, InStr(bob$, " ") - 1)
ActiveCell.Offset(0, 2).Value = Right(bob$, Len(bob$) - InStr(bob$, " "))
End Sub