I'm adding a link to a Word toolbar to open an Excel file, but the filename has spaces in it. How do I handle this:
Shell ("Excel /f C:Ascend2020 PHX ADT.xls"), vbNormalFocus
I'm adding a link to a Word toolbar to open an Excel file, but the filename has spaces in it. How do I handle this:
Shell ("Excel /f C:Ascend2020 PHX ADT.xls"), vbNormalFocus
Jean B.
www.jeannewey.com

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
You must enclose the name in quotes, but since the name is already inside a quoted string, you must double the quotes:
<code>
Shell "Excel /f ""C:Ascend2020 PHX ADT.xls""", vbNormalFocus</code>