Microsoft Outlook, VBA & thisoutlooksession: open the appropriate Excel workbook

Nelson78

Well-known Member
Joined
Sep 11, 2017
Messages
526
Office Version
  1. 2007
Hello everybody.

I'm building an automatic process in Microsoft Outlook in "thisoutlooksession" module.

Now, I need Microsoft Outlook to open an Excel workbook located in a specific folder.

I've developped a code that works fine if triggered in Excel with a regular macro.
How can I instruct Microsoft Outlook to perform the same task?

Code:
Sub LoopThroughFiles()

Dim MyObj As Object, MySource As Object, File As Object
Dim MyFile As String
Set MyObj = CreateObject("Scripting.FileSystemObject")
Set MySource = MyObj.GetFolder("C:\Users\xxxx.yyyy\Desktop\zzzzzzzzzz\")

Dim count As Integer
count = 0

For Each File In MySource.Files
    count = count + 1
Next File

If count = 1 Then Workbooks.Open ("C:\Users\xxxx.yyyy\Desktop\zzzzzzzzzz\report.xlsm")

If count > 1 Then
     For Each File In MySource.Files
          MyFile = File
               If File Like "*_*" Then
                    Workbooks.Open (MyFile)
               End If
    Next File
End If
       
End Sub
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
To open an Excel workbook from Outlook:

Code:
Sub OpenWorkbookInExcel()
  Dim objExcelApp As Object
  Set objExcelApp = CreateObject("Excel.Application")
  objExcelApp.Workbooks.Open "C:\Users\Greg\Desktop\Book1.xlsm"
  objExcelApp.Visible = True
  Set objExcelApp = Nothing
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,020
Members
448,939
Latest member
Leon Leenders

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top