Message 1 of 7
iLogic Excel Hide / Close
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have been trying to get a cell from an embedded spreadsheet but my problem is that i cannot get excel to be hidden or even close when it's done.
What I want it to do is simply retrieve the cell value without any windows opening; i just want it to work in the background.
The code i'm currently using is:
ThisApplication.SilentOperation = True ' Doesn't work
GoExcel.DisplayAlerts = False
mystr = GoExcel.CellValue("3rd Party:Embedding 2", "Bearing Housings", "L5")
GoExcel.Close ' This Doesn't work
MsgBox (mystr)
Thanks in advance, Matt.