> For ease of switching between the two applications, I have inserted the
> Microsoft Excel icon onto my MS Word toolbar (using View / Toolbars /
[quoted text clipped - 4 lines]
>
> Is it missing?
There's no comparable built-in command in XL. However, it's very easy to
implement.
Put this macro in your Personal Macro Workbook (or another add-in),
Public Sub SwitchToWord()
Dim oWordApp As Object
On Error Resume Next
Set oWordApp = GetObject(, "Word.Application")
If oWordApp Is Nothing Then
Set oWordApp = CreateObject("Word.Application")
oWordApp.Documents.Add
End If
On Error GoTo 0
AppActivate "Microsoft Word"
Set oWordApp = Nothing
End Sub
Now insert a Custom Button on your desired toolbar, and attach the macro
to the button.