Help with VBA code

dpaton05

Well-known Member
Joined
Aug 14, 2018
Messages
2,352
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
I want to have a message box pop up if the date entered in column A of a table row is earlier than todays date, I have some code but it only seems to sometimes work. What is wrong with it or is there better code? The table's name is npss_quote

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim ans As Long
      If Not Intersect(Target, Range("A:A")) Is Nothing Then
    Application.EnableEvents = False
        If Target.Cells.CountLarge > 1 Or IsEmpty(Target) Then Exit Sub
        If Target.Value < Date Then
            ans = MsgBox("This input is older than today !....Are you sure that is what you want ???", vbYesNo)
        If ans = vbNo Then Target.Value = ""
    End If
End If
Application.EnableEvents = True

End Sub
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
This script works for me.
You do realize the script is based on manually entering a date in Column(A)

It is not looking at a Table Range.

A Table is a Range on a Worksheet.

This script will be activate even if you enter a date in Range("A9000")
And Date means Todays Date
Which may be way below a Table Range
 
Upvote 0
Your current code will leave events disabled if you delete an existing value in column A
try this
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim ans As Long
If Not Intersect(Target, Range("A:A")) Is Nothing Then
If Target.Cells.CountLarge > 1 Or IsEmpty(Target) Then Exit Sub
If Target.Value < Date Then
    ans = MsgBox("This input is older than today !....Are you sure that is what you want ???", vbYesNo)
    If ans = vbNo Then
        Application.EnableEvents = False
        Target.Value = ""
        Application.EnableEvents = True
    End If
End If
End Sub
 
Last edited:
Upvote 0
I am still learning to code so I don't fully understand it. I just found it on the net somewhere.

It works for me too but there are times that it won't work. I'm not sure of the specifics for when it won't work but I just know that sometimes it works and sometimes it doesn't.

When I get back to my computer, I will try that code you suggested.

Thanks
 
Last edited:
Upvote 0
I put that code in and it didn't seem to work.
 
Upvote 0
Please explain what it is doing and is not doing.

Do you mean it is still working sometimes and not other times?

And are you saying you want it to work in just the table range

If so give the table name.

Or do you want it to work on any cell in column A

A Table is a range on a Worksheet.
 
Upvote 0
I asked this question which you never answered:
You do realize the script is based on manually entering a date in Column(A)
 
Upvote 0
Please explain what it is doing and is not doing.

Do you mean it is still working sometimes and not other times?

And are you saying you want it to work in just the table range

If so give the table name.

Or do you want it to work on any cell in column A

A Table is a range on a Worksheet.
I enter a date in Column A of my table, npss_quote and the date is before today and there is meant to be a check if an older date is entered but it only sometimes is activated. I don't know why and there doesn't seem like there is any pattern for when it doesn't happen.
 
Upvote 0

Forum statistics

Threads
1,214,787
Messages
6,121,569
Members
449,038
Latest member
Guest1337

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