Hi all,
I want to create a loop that saves each workbook in Excel 97 and then closes them. Preferably it would look like
Do until ActiveWorkbooks = "" 'Or whatever the code for this is
ActiveWorkbook.Save
ActiveWorkbook.Close
Loop
The piece of code that I really need is the first bit, the Do Until part. Not really sure how to know that all of the workbooks have been dealt with.
Thanks
