VBA Code to make sure that Date (Input Box result) is in sequence with the previous date from the previous row

ArleneJo

New Member
Joined
Oct 8, 2012
Messages
8
Hi,

I've been trying to come up with a code to make sure that any dates entered by user are in sequence with the previous date above each row. If user entered a wrong date, a message will appear and will clear out the cell content then will prompt another input box to enter the correct date. I tried to use the IF THEN statement with DATEDIFF function but for some reason the formatting messes it up. Debugging points me out to the IF THEN statement. In code below, you will notice that I also try to automate the day input to right column based on the input date. Here's the code:

Code:
Dim varInputDate As Variant
Dim lngERow As Long
Dim lngPRow As Long
Dim dteMyPreviousInputDate As Date


lngPRow = Range("B" & Rows.Count).End(xlUp).Row
lngERow = Range("B" & Rows.Count).End(xlUp).Offset(1).Row
dteMyPreviousInputDate = Range("B" & lngPRow).Value
varInputDate = Range("B" & lngERow).Value


Do
varInputDate = InputBox("Please enter the settlement date", "Settlement Date", "dd/mm/yyyy")


'cancel pressed
If StrPtr(varInputDate) = 0 Then Exit Sub


If Not IsDate(varInputDate) Then MsgBox "Please enter a valid date format dd/mm/yyyy", 16, "Invalid Date"


Loop Until IsDate(varInputDate)




With Range("B" & lngERow)
    .Value = DateValue(varInputDate)
    .NumberFormat = "dd/mm/yyyy"
    .Select
End With


If DateDiff("d", varInputDate, dteMyPreviousInputDate) <> 1 Then
    MsgBox "Invalid Date"
    Range("B" & lngERow).ClearContents
    Range("A" & lngERow).ClearContents
  
Do
varInputDate = InputBox("Please enter the settlement date", "Settlement Date", "dd/mm/yyyy")
lngERow = Range("B" & Rows.Count).End(xlUp).Offset(1).Row


'cancel pressed
If StrPtr(varInputDate) = 0 Then Exit Sub


If Not IsDate(varInputDate) Then MsgBox "Please enter a valid date format dd/mm/yyyy", 16, "Invalid Date"


Loop Until IsDate(varInputDate)
End If




With Range("B" & lngERow)
    .Value = DateValue(varInputDate)
    .NumberFormat = "dd/mm/yyyy"
    .Select
End With




With Range("A" & lngERow)
    .HorizontalAlignment = xlLeft
    .NumberFormat = "dddd"
    .Value = DateValue(varInputDate)
End With


End Sub
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Try something like this:
Code:
Public Sub Test()

    Dim varInputDate As Variant
    Dim lngERow As Long
    Dim lngPRow As Long
    Dim dteMyPreviousInputDate As Date
    
    lngPRow = Range("B" & Rows.Count).End(xlUp).Row
    lngERow = Range("B" & Rows.Count).End(xlUp).Offset(1).Row
    dteMyPreviousInputDate = Range("B" & lngPRow).Value
    
    Do
        varInputDate = InputBox("Please enter the settlement date", "Settlement Date", "dd/mm/yyyy")
        
        'cancel pressed
        If varInputDate = "" Then Exit Sub
        
        If Not IsDate(varInputDate) Then
            MsgBox "Please enter a valid date format dd/mm/yyyy", vbCritical, "Invalid Date"
        ElseIf CDate(varInputDate) <> dteMyPreviousInputDate + 1 Then
            Debug.Print CDate(varInputDate)
            MsgBox "The entered date must be 1 day after the previous date (" & dteMyPreviousInputDate & ")"
        End If
    
    Loop While Not IsDate(varInputDate) Or varInputDate <> dteMyPreviousInputDate + 1
    
    Range("B" & lngERow).Value = CDate(varInputDate)

End Sub
But if the next date should be 1 day after the previous date why do you need the user to input it? You could compute the next date by adding 1 to the previous date.
 
Upvote 0
Hi John_W! it works! thanks so much. I still have so much to learn. As to your question, I need a user to input the new date as I dont know of any other way on how to trigger it. Any thoughts?
 
Upvote 0
This puts the date of the next day in the column B cell below the previous date.
Code:
Public Sub NextDate()

    Dim lr As Long
    Dim lastDate As Date
    
    With ActiveSheet
        lr = .Range("B" & Rows.Count).End(xlUp).Row
        lastDate = .Cells(lr, "B").Value
        If IsDate(lastDate) Then .Cells(lr + 1, "B").Value = lastDate + 1
    End With

End Sub
 
Upvote 0

Forum statistics

Threads
1,216,119
Messages
6,128,946
Members
449,480
Latest member
yesitisasport

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