VBA to check if date has passed

j4ymf

Well-known Member
Joined
Apr 28, 2003
Messages
740
Office Version
  1. 365
Platform
  1. Windows
Hello All

is there any VBA code to check if a date has passed,
Lets say i have a fixed date in cell A1 = 24/09/4014 06:59

and NOW() = 25/09/4014 06:27 then run the macro other wise

MsgBox "Sorry, You can't run the macro because the date has not reached cell A1"
Exit Sub


please help

thanks jason
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Hello All

is there any VBA code to check if a date has passed,
Lets say i have a fixed date in cell A1 = 24/09/4014 06:59

and NOW() = 25/09/4014 06:27 then run the macro other wise

MsgBox "Sorry, You can't run the macro because the date has not reached cell A1"
Exit Sub
Try this as the first executable statement in your code...
Code:
If Now < Range("A1").Value Then Exit Sub
 
Upvote 0
Thank You Rick

You are a star
this is how i used your code to help me


Code:
If Now < Sheets("P14").Range("A10").Value Then
MsgBox "Sorry" & vbCrLf & vbCrLf & "This period has not ended yet!" & vbCrLf & vbCrLf & "any problems contact ..."
Exit Sub
End If
 
Upvote 0

Forum statistics

Threads
1,213,543
Messages
6,114,243
Members
448,555
Latest member
RobertJones1986

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