I am using LotusScript to export to Excel. I’m using the following code to keep Excel from opening until the end of the export. It works fine on my computer, but on my co-worker’s computer Excel pops open and she can see all the rows populating. Is something wrong in the code or is there an Excel setting we’re missing:Dim object As NotesEmbeddedObject
Dim xlApp As Variant
Dim oWorkbook As Variant
Set xlApp = CreateObject(“Excel.Application”)
xlApp.Visible = False
Set oworkbook = xlApp.Workbooks
oworkbook.Add
… code to export
Messagebox “Your Excel file is ready.”
xlApp.Visible = True
Thanks