Hi,
Help Java script code on how to save and close one of the excel file when multiple are open.
My current code is working fine if only one excel is open.
function Excelclose()
{
let app = Sys.OleObject("Excel.Application");
if(app.Visible== true){
app.ActiveWorkbook.Save();
app.Quit()
Log.Message("Excel closed successfully");
}
else
{
Log.Message(" Excel is not running");
}
}
when myltiple excels files are open, due to App. quit, microsoft excel save popup is getting displayed ( refer the screen shot).I tried to giving detail of specific file name to save and close, some how not working.
function Excelclose()
{
let app = Sys.OleObject("Excel.Application");
let filepath: C:\\users\\test.xlsx";
if(app.Visible== true)
{
app.ActiveWorkbook.Save(filepath);
app.Quit()
Log.Message("Excel closed successfully");
}
can some one take a look at it and let me know where I am missing ?
Thank you
Solved! Go to Solution.
You need to set the active workbook to the one that you want to close. Then, in your call to "Close", there is a parameter to indicate whether or not to save changes. App.Quit is NOT how you want to go because that will Excel, not just the individual workbooks. The only time you should call app.Quit is at the very end of your execution when you're completely done with Excel.
I would suggest you to Create a workbook instead of using "app.ActiveWorkbook" and then try to save the Workbook & close it.
let excelObject= Sys.OleObject("Excel.Application");
let filepath: C:\\users\\test.xlsx";
excelWorkbookObj = excelObject.Workbooks.Open(filepath);
excelWorkbookObj.SaveAs(strexcelFileName);
excelWorkbookObj.Close();
excelWorkbookObj = null;
Thank you for reply and suggestion.But the excel has test data which are using for DD Loop and updating the transaction ids to the same excel.so create work book is not an option.
If the scripts gets error out at the middle, we are stoping the scripts. in that cases, the excel is alreay open and unable to open again.
Madhu
You need to set the active workbook to the one that you want to close. Then, in your call to "Close", there is a parameter to indicate whether or not to save changes. App.Quit is NOT how you want to go because that will Excel, not just the individual workbooks. The only time you should call app.Quit is at the very end of your execution when you're completely done with Excel.
Thanks Robert for the guidance. Did you mean I need to create two functions - one will active work book and other to save?
would u help me with logic?
Thank you
Hi @techgirlbb,
I think Robert suggested to activate the needed worksheet and close it instead of closing of the application.
I've found that you can use the Activate method:
https://docs.microsoft.com/en-us/office/vba/api/excel.worksheet.activate(method)
example:
app.Workbooks("Name").Worksheets("Sheet1").Activate
Sorry, I intended to reply to this.
Yes, @TanyaYatskovska has the correct code. Use the "Activate" method on a workbook and make it the active one then close that. This will close the workbook without exiting the Excel application. Additionally, the "Close" method has a parameter to indicate to save changes on close without needing the prompt.