Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I use this automated email code from one of the experts however, I'd like to change point the subject field to a cell reference - the value (always a date) in cell G1. ..Subject = "" |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this...
..Subject = Range("G1").Text -- Rick (MVP - Excel) "J.W. Aldridge" wrote in message ... I use this automated email code from one of the experts however, I'd like to change point the subject field to a cell reference - the value (always a date) in cell G1. .Subject = "" |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
..Subject = Range("G1").Text Or ..Subject = Sheets("Sheet1").Range("G1").Text The sheet reference is only needed if sheet1 isn't the active sheet. --- Per "J.W. Aldridge" skrev i meddelelsen ... I use this automated email code from one of the experts however, I'd like to change point the subject field to a cell reference - the value (always a date) in cell G1. .Subject = "" |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Use text from a cell reference in vba code. | Excel Discussion (Misc queries) | |||
Go to from reference in VBA code to actual cell? | Excel Programming | |||
Cell Reference is Worksheet Name in VB Code | Excel Programming | |||
Cell Reference is Worksheet Name in VB Code | Excel Programming | |||
Code To Insert Cell Reference | Excel Programming |