You could try killing the process:
Code:
For Each p As Process In Process.GetProcessesByName("excel")
     p.Kill()
Next
Though that would close excel if the user had it running.