Date format

russelldt

Board Regular
Joined
Feb 27, 2021
Messages
158
Office Version
  1. 365
Platform
  1. MacOS
I have a cashflow sheet, and i need to enter dates that payments are due. If the date is in the following year, i have to enter the format dd/mm/2022, if the due date is after 31/12/2021.

How can i format the date to only look at dates that occur after todays date, so if i enter 12 Jan, the cashflow date is 12 jan 2022, and not 2021. This would apply to a large range of cells as well as some specific cells, not the entire sheet.

Has anyone a solution for this,

Many thanks
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
You cannot do what you want with cell formatting as you are needing to physically change an entered value. You can do what you want using event code though. A couple of caveats first... one, I am not using a Mac and, two, the natural order of my dates is the reverse of yours... that means I cannot test this for you (it works on my system though and I have reason to believe it should work for you too). Also, you did not tell us the column where you are entering your dates so I assumed Column C (which is why my If..Then test the column against the number 3)... change as necessary. Here is the event code...
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
  If Target.CountLarge = 1 Then
    If Target.Column = 3 Then
      If Target.Value <= Date Then
        Application.EnableEvents = False
        Target.Value = DateAdd("yyyy", 1, Target.Value)
        Application.EnableEvents = True
      End If
    End If
  End If
End Sub
HOW TO INSTALL Event Code
------------------------------------
If you are new to event code procedures, they are easy to install. To install it, right-click the name tab at the bottom of the worksheet that is to have the functionality to be provided by the event code and select "View Code" from the popup menu that appears. This will open up the code window for that worksheet. Copy/Paste the event code into that code window. That's it... the code will now operate automatically when its particular event procedure is raised by an action you take on the worksheet itself. Note... if you are using XL2007 or above, make sure you save your file as an "Excel Macro-Enabled Workbook (*.xlsm) and answer the "do you want to enable macros" question as "yes" or "OK" (depending on the button label for your version of Excel) the next time you open your workbook.
 
Upvote 0
the natural order of my dates is the reverse of yours... that means I cannot test this for you (it works on my system though and I have reason to believe it should work for you too).
Tested with UK format dates, Rick. Your code works fine.
 
Upvote 0
Thanks for confirming my code works with UK formatted dates... now the next hurdle is will it work on a Mac (I know nothing about Macs nor its implementation of VBA)?
 
Upvote 0
You cannot do what you want with cell formatting as you are needing to physically change an entered value. You can do what you want using event code though. A couple of caveats first... one, I am not using a Mac and, two, the natural order of my dates is the reverse of yours... that means I cannot test this for you (it works on my system though and I have reason to believe it should work for you too). Also, you did not tell us the column where you are entering your dates so I assumed Column C (which is why my If..Then test the column against the number 3)... change as necessary. Here is the event code...
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
  If Target.CountLarge = 1 Then
    If Target.Column = 3 Then
      If Target.Value <= Date Then
        Application.EnableEvents = False
        Target.Value = DateAdd("yyyy", 1, Target.Value)
        Application.EnableEvents = True
      End If
    End If
  End If
End Sub
HOW TO INSTALL Event Code
------------------------------------
If you are new to event code procedures, they are easy to install. To install it, right-click the name tab at the bottom of the worksheet that is to have the functionality to be provided by the event code and select "View Code" from the popup menu that appears. This will open up the code window for that worksheet. Copy/Paste the event code into that code window. That's it... the code will now operate automatically when its particular event procedure is raised by an action you take on the worksheet itself. Note... if you are using XL2007 or above, make sure you save your file as an "Excel Macro-Enabled Workbook (*.xlsm) and answer the "do you want to enable macros" question as "yes" or "OK" (depending on the button label for your version of Excel) the next time you open your workbook.
Yep, thanks - works perfectly with Mac. I have column k, so will change the target.column to 11.

many thanks for your help
 
Upvote 0
Occasionally i need to delete a date that i have previously entered, and leave the cell blank. Testing this out now, when i delete a date there is a date 30 December 1900 in the cell, and i can't delete the date. Would appreciate if you can suggest how to modify the VBA to solve this.

Thanks
 
Upvote 0
Try using this variation of my code...
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
  If Target.CountLarge = 1 Then
    If Target.Column = 3 Then
      If Target.Value = "" Then
        Target.NumberFormat = "General"
      ElseIf Target.Value <= Date Then
        Application.EnableEvents = False
        Target.Value = DateAdd("yyyy", 1, Target.Value)
        Application.EnableEvents = True
      End If
    End If
  End If
End Sub
 
Upvote 0
Try using this variation of my code...
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
  If Target.CountLarge = 1 Then
    If Target.Column = 3 Then
      If Target.Value = "" Then
        Target.NumberFormat = "General"
      ElseIf Target.Value <= Date Then
        Application.EnableEvents = False
        Target.Value = DateAdd("yyyy", 1, Target.Value)
        Application.EnableEvents = True
      End If
    End If
  End If
End Sub
A perfect solution, thanks again for your support
 
Upvote 0

Forum statistics

Threads
1,214,411
Messages
6,119,346
Members
448,888
Latest member
Arle8907

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