Excel to close trailing window
Hi I use a code to copy paste from a one drive excel sheet to another This is my code to open the file: Public openwb As Workbook Sub testOpenWBOneDrive() Dim wbFullName, objLogExcel As Object Set objLogExcel = CreateObject("Excel.Application") objLogExcel.Visible = True wbFullName = "https://mysmartplace-my.sharepoint.com/personal/Misc/data.xlsx" Set openwb = objLogExcel.Workbooks.Open(wbFullName) End Sub And my code to… Read More Excel to close trailing window