cancel
Showing results for 
Search instead for 
Did you mean: 

Excel Popup Issue

babaiah
Staff
Staff

Hello All,

We are getting the following popup when opening Excel. Does anyone have suggestions on how to handle this?

Thank you.

babaiah_0-1738080583456.png

 

Babaiah Palagiri, Lead Software Engineer, SS&C Technologies, Hyderabad.
2 REPLIES 2

Hi @babaiah 

Based on the exception  you have provided, it looks like the excel file you opened has references present in the file and it might be  updated or deleted.  if that is the case you need to correct the references to resolve the issue.

Refernece should be either reference from other excel sheet or data source.



-----------------------
If I answered your query. Please mark it as the Best Answer

Harish Mogulluri

Hi @babaiah 

As @harish.mogulluri mentioned it looks like the file you are opening has links to other files and the files they are linking to are missing. You can try turning off auto updates for the links after creating and instance and before you open the file. This should prevent the file trying to update the links when it opens and resolve the issue with the pop up. You would need a new code stage for that though, i've place the code below if you need it. Inputs are Handle, Workbook and Auto Updates the last one should be a flag data item.

 

Dim wb As Object
Try 
 
wb = GetWorkbook(Handle, Workbook)
wb.Activate()
 
wb.UpdateRemoteReferences = Auto_Updates
 
Success = True
 
Catch e As Exception
Success = False
Message = e.Message
Finally
wb = Nothing
End Try