Search results

  1. P

    Outlook 2016 from Excel 2016 VBA

    I have recently upgraded from Office 2010 to Office 2016. This code in Excel 2016 VBA yields a partial Outlook 2010 screenshot but nothing else. How do I access Outlook 2016 from Excel 2016 VBA: Set OutApp = CreateObject("Outlook.Application") Set OutMail = OutApp.CreateItem(0) With...
  2. P

    String manipulation in Outlook VBA

    Is it possible to use string manipulation in Outlook VBA? I need the first 14 digits of an email address for processing concerns. Thanks.
  3. P

    move a specified email "From" tag items to a certain folder whenever there is "New Mail" in the inbo

    What I want to do is move a specified email "From" tag items to a certain folder whenever there is "New Mail" in the inbox. Private Sub Application_NewMail() Dim BillsEmailFrom(100), JunkEmailFrom(100), ForumsEmailFrom(100) As String Dim numbills, numjunk, numforums As Double Dim OLapp...
Back
Top