How to create a reminder on VBA for Excel?

Luis8

New Member
Joined
Jul 15, 2011
Messages
3
How do you make a program take dates from excel and notify in the current date. I already have the program which includes a list of due dates, all in the same column. Can I create a reminder that lists whatever is due that date?

I've heard I should use VBScript and put it in a start up folder, but I'm not sure is that the best option?

Thanks in advanced!
 
Last edited:

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Welcome to the Board!

You can use VBA to throw up a message box.

If Range("A1") < Date Then MsgBox "Past Due"

Although with a lot of dates it's probably more practical to use a formula.

=IF(A1<Today(),"Past Due","")

HTH,
 
Upvote 0
Thanks!
Well right now there aren't a lot of dates but the idea is to have a whole column in like about three sheets with due dates of stuff to do. What would be an example of the formula? If not If Range("A1") < Date Then MsgBox "Past Due". If they were all in the G column?
 
Upvote 0
Sorry about that the board sees "<" as HTML and tries to render it.

The formula would be:

=IF(G1 < Today(),"Past Due","")
 
Upvote 0

Forum statistics

Threads
1,224,602
Messages
6,179,841
Members
452,948
Latest member
UsmanAli786

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