Hi @RNDinov8r. I am not sure how familiar you may be with accessing Excel related stuff by code, but the Excel application has its own API system, and we can access it much the same way we can access Inventor's API. The iLogic 'GoExcel' rule object represents the IGoExcel Interface, which provides simpler/shortcut ways to do simple stuff with Excel, without needing to know anything about Excel's API. Anyways, if want to use those GoExcel tools, to keep things simpler, but do need to 'see' Excel open visibly, then there is a relatively simple way to do that...at least it works OK for me. In the Excel API, the Application object has a 'Visible' property with a Boolean value that is Read/Write, so this example is just taking advantage of that. But working with Excel by code is finicky, and does not always work the same for everyone. Below is a very simplistic example iLogic rule that opens an existing Excel file in the Temp folder named "Test", shows Excel visibly, then sets/changes a cell value, then pauses with a MsgBox so you can review the change, before the next change happens, then changes that cell value again, followed by another MsgBox, allowing review. Then it closes that Excel file. If that was the only Excel file open in any instance of Excel, it also visibly closes the Excel application.
Dim sFile As String = "C:\Temp\Test.xlsx"
Dim sSheet As String = "Sheet1"
GoExcel.Open(sFile, sSheet)
Dim oExcel As Object = GoExcel.Application
oExcel.Visible = True
GoExcel.CellValue("D3") = "45 in"
MsgBox("Review Cell D3 for '45 in' value.", , "")
GoExcel.CellValue("D3") = "12.34 in"
MsgBox("Review Cell D3 for '12.34 in' value.", , "")
oExcel = Nothing
GoExcel.Close
You will also notice that this code example does not actually 'save' those changes (using GoExcel.Save), so if you open that Excel file after running this, it has not actually changed. If you want to keep changes, you must save after making the changes, but before closing it.
If this solved your problem, or answered your question, please click ACCEPT SOLUTION .
Or, if this helped you, please click (LIKE or KUDOS) 👍.
Wesley Crihfield
![EESignature EESignature](http://autodesk.i.lithium.com/t5/image/serverpage/image-id/1272565i464DC3DC646B4F11/image-size/original)
(Not an Autodesk Employee)