![]() |
|
|||||||
|
|
Thread Tools | Display Modes |
|
#10
|
||||
|
||||
|
The macro should only leave Excel open if it was open before running the process.
The subscript out of range error suggests that VBA has crashed irrecoverably (in which case you need to reboot) or the criteria set at the top of the macro to match your data i.e. Code:
Const strWorkBook As String = "Count0To12Hr.xls" 'The name of the attached workbook Const strSheet As String = "Count0To12Hr" 'The name of the worksheet to process Const strCell As String = "E2" 'The cell to process Const iCount As Integer = 19 'The threshold value of the above cell Const strMessage As String = "This is the reply message body text." 'The default signature will be included. What is the range of values that you might put in iCount? Look up the numeric ranges for Integer and Long variables. It might be better to change Const iCount As Integer = 19 to Const iCount As Long = 19
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Create macro program to automatically email outlook with a visible cell range
|
BillMaintenance | Excel Programming | 19 | 03-11-2015 03:19 PM |
| Can anyone here tweek this macro for renaming Excel files based on a cell's contents? | chrisd2000 | Excel Programming | 6 | 07-01-2014 01:53 PM |
| Email alert based on value in cell | sweetcuda | Excel | 0 | 03-12-2014 12:44 PM |
Command button - save in temp folder and send email with attachment
|
bigbird69 | Word VBA | 13 | 11-18-2012 10:06 PM |
| Macro based on cell value | ubns | Excel Programming | 1 | 05-07-2012 04:03 AM |