VBS to emailing a workbook that is already open

nmk34

New Member
Joined
Apr 12, 2022
Messages
40
Office Version
  1. 365
  2. 2010
Platform
  1. Windows
I can not close a workbook because it collects data 24hrs. i am using VBS to send this workbook using a macro that was saving the file first then send the email with this workbook attached. i used Task scheduler to trigger this vbs file. it worked for 3 weeks but now i get an unknown error.
vbs file:
Option Explicit
Dim xlBook, xlApp
Set xlBook = GetObject("C:\Users\folder1\Desktop\Test\workbook1.xlsm")
Set xlApp = xlBook.Application
xlApp.run "MY_SendEmail_Example1" ' macro in workbook
'xlApp.save
xlApp.Quit
Set xlBook = Nothing
Set xlApp = Nothing
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).

Forum statistics

Threads
1,214,614
Messages
6,120,530
Members
448,969
Latest member
mirek8991

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