Calendar Export
Copy the code below into your Outlook VBA module (Alt+F11). Connect to a macro button on the ribbon if you use it regularly. ‘ ======================================================================= ‘ Routine to export selected calendar to a spreadsheet (Date, Subject, Location) ‘ ======================================================================= Public Sub ExportCurrentFolderToSpreadsheet() Set myOLApp = CreateObject(“Outlook.Application”) Set myOlExp = myOLApp.ActiveExplorer Set myOlSel = myOlExp.CurrentFolder Set…