Automatic Disable vba code after specific timeframe

Sharyanshgoyal

New Member
Joined
May 27, 2019
Messages
3
Hi,

I need a automatic vba code to disable the existing vba file after specific timeframe and specific date.

Thanks
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
After and on July 1 this year, the code would not run past the first line because the current date would be greater han the criteria date.

Code:
Sub t()
If Date >= #7/1/2019# Then Exit Sub
'Your regular code here
End Sub

Date is current date
The date with the pound symbols is the criteria date. The pound symbols make it date literal so it will be the correct data type.
 
Last edited:
Upvote 0
After and on July 1 this year, the code would not run past the first line because the current date would be greater han the criteria date.

Code:
Sub t()
If Date >= #7/1/2019# Then Exit Sub
'Your regular code here
End Sub

Date is current date
The date with the pound symbols is the criteria date. The pound symbols make it date literal so it will be the correct data type.

Dear JLGWhiz

Thanks for your quick reply. I'm new in the world of vba coding. Request if you can also set a message box that will reflect after the expiration date for the user.
 
Upvote 0
Code:
Sub t()
If Date >= #5/28/2019# Then
     MsgBox "Code expired on 5/28/2019", vbInformation, "CODE EXPIRED'"
     Exit Sub
End If
'Your regular code here
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,732
Members
448,987
Latest member
marion_davis

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