Auto Date Help!!!

mattless1

Board Regular
Joined
Apr 1, 2011
Messages
102
Hi.

Is it possible to have the cell, B1 - which will return the Date in this format of (19-Sept-2012) when a number is added into cell A1? , but also do the same for ever other line after that E.G A2-B2, A3-B3 & so on

Example, I type "206" in Cell A1.
Now B1 will show me the Date.

Thanks for any help in advance.
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
try something like this in the relevant sheet's code-module:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Set DetectRange = Range("A2:A20") 'adjust this
Set DetectedCells = Intersect(Target, DetectRange)
If Not DetectedCells Is Nothing Then
    For Each cll In DetectedCells
        With cll.Offset(, 1)
            .NumberFormat = "d-mmm-yyyy"
            .Value = Date
        End With
    Next cll
End If
End Sub
 
Upvote 0
This works like a dream. Many Many thanks for helping solve that. i have tried so many different ways.

Again Thanks
 
Upvote 0

Forum statistics

Threads
1,215,417
Messages
6,124,791
Members
449,188
Latest member
Hoffk036

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