Excel VBA Now + TIME() ?

theta

Well-known Member
Joined
Jun 9, 2009
Messages
960
I have been using RonDeBruin mail macro (very nice). Now I am adding a reminder to the mail. Which does work, but the timings do not!

Whenever I send, it pops up instantly saying due NOW, when it should be the current time + time()

Any ideas?

Code:
        .ReminderSet = True
        .ReminderTime = Now + Time(1, 0, 0)
        .DueDate = Now + Time(8, 0, 0)
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Try

Code:
.ReminderTime = Now + TimeSerial(1, 0, 0)
.DueDate = Now + TimeSerial(8, 0, 0)
 
Upvote 0
If the recipient has outlook, will this give them reminders? I want the mail to prompt people at certain times...
 
Upvote 0

Forum statistics

Threads
1,224,599
Messages
6,179,828
Members
452,946
Latest member
JoseDavid

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