Error In Expiry Date Formula

madserv

New Member
Joined
Oct 15, 2019
Messages
5
I am getting the following error in the Expiry date formula in workbook

Private Sub Workbook_Open()
Dim Edate As Date
Edate = Format("31/12/2012", "DD/MM/YYYY") ' Replace this with the date you want
If Date > Edate + 2 Then
MsgBox "This workbook is Expired and will now close !!!"
ActiveWorkbook.Close
End If
End Sub

i am using the above mension formula for expiry date.

it says
Compile error
Ambigous name detected : workbook_open

please help me to solve this. thanks
 

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
Hello,

You cannot TWO times the same event : Private Sub Workbook_Open()

Basically, if you need both actions ... you need to merge all your instructions into a single Private Sub Workbook_Open()

Hope this will help
 
Upvote 0
Thanks Alot for the help.
it works perfectly now :)

Hello,

You cannot TWO times the same event : Private Sub Workbook_Open()

Basically, if you need both actions ... you need to merge all your instructions into a single Private Sub Workbook_Open()

Hope this will help
 
Upvote 0

Forum statistics

Threads
1,213,539
Messages
6,114,221
Members
448,554
Latest member
Gleisner2

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