I writing a VBA varinat array to Excel, I have a date column in the array formatted UK date. When I write it to Excel it is in US format. I do the same thing on a diferent sheet and it works fine. Even if I change the format of the cells after writing in the array the format does not change. The VBA code is
.Activate
.Range(Cells(pprow + 1, 1), Cells(pprow + UBound(DayData, 2), 10)) = Application.Transpose(DayData)
Any ideas
Thanks
Jason
.Activate
.Range(Cells(pprow + 1, 1), Cells(pprow + UBound(DayData, 2), 10)) = Application.Transpose(DayData)
Any ideas
Thanks
Jason