Here's what I have so far. Immediate window shows the result I want, but Clipboard remains without that result. I want those characters on the Clipboard.
Sub CopyFirst()
Dim position As Integer
Dim substring As String
position = InStr(ActiveCell, " ")
If (position > 0) Then
substring = Left(ActiveCell, position - 1)
Debug.Print substring
End If
End Sub