Category Archives: Excel

Dumping file info into an Excel spreadsheet

So you’ve got a folder full of documents and you want to know what’s in the folder, how big the files are, and when they were last modified? And of course you want to be able to filter and sort … Continue reading

Posted in Excel, Microsoft, Programming | Tagged | Comments Off

Export Microsoft Outlook Journal entries to Excel

If you’re a Microsoft Outlook Journal user, save this code into a macro to export journal entries from a select time range into Excel. Updated for Excel 2007. In your macro window, under Tools>References, make sure you check the Microsoft … Continue reading

Posted in Excel, Outlook | Tagged , | Comments Off

Cool Excel formula for replacing line breaks

If you copy and paste from another application into Excel, chances are you’ll come across some boxes that create unsightly line breaks in your cells. Use this formula to make those line breaks disappear: =SUBSTITUTE(SUBSTITUTE([celladdress],CHAR(13),” “),CHAR(10),”") where [celladdress] is the … Continue reading

Posted in Excel, Microsoft | Tagged , | 1 Comment