How to save and close one excel file when multiple are open
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to save and close one excel file when multiple are open
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.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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;
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----
Why automate? I do automated testing because there's only so much a human being can do and remain healthy. Sleep is a requirement. So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.
Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
Tanya Yatskovskaya
SmartBear Community and Education Manager
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----
Why automate? I do automated testing because there's only so much a human being can do and remain healthy. Sleep is a requirement. So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.
Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
