A little date formatting puzzle

Cath

Board Regular
Joined
Aug 10, 2005
Messages
156
Hi

Just got my array to work (thanks for the help everyone)

However I take a date, eg, 17/11/05 (format dd/mm/yy), it goes into an array, and if I check the value it is still 17/11/05. It is then entered into a cell (who's format is dd/mm/yy), but when I look at the results, it says 11/17/05 but strangely the format is still dd/mm/yy??

Has anyone any idea how to change this? I could understand if it had defaulted to m/d/y as I could just change it back, but now it actually has the wrong date in?

Thanks

Cath
 
Nope, its still putting it in as 11/17/2005. I'm thinking I have to go back to the original sheet, pick up the date again and put it in the right cell avoiding arrays altogether, although not what I wanted to do really

:unsure:

Cath
 
Upvote 0

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Hi;

Where your date is coming from ?
If it is coming from a userform, there is a conflict between the latin and the anglo saxon format.
Then you have to enter into your code :
Range(xx).Value = DateSerial(Year(mydate.Value), Month(mydate.Value), Day(mydate.Value))
You can also use this to change your date into the good one.

Hope this helps.
 
Upvote 0
Try this, linked to a button, or with a combination of keyboard keys (e.g. ctrl+a).

Sub copydate()
On Error GoTo fin
Set rep = Application.InputBox("Click on the cell in which the date you want to copy is", _
Title:="Copy date", Type:=8)
Set rep2 = Application.InputBox("Click on the cell in which you want to paste your date", _
Title:="Paste date", Type:=8)
rep2.Value = DateSerial(Year(rep.Value), Month(rep.Value), Day(rep.Value))
Exit Sub

fin:
MsgBox "Copy cancelled by user", vbInformation + vbOKOnly, "Stop copy"
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,259
Members
449,075
Latest member
staticfluids

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