Tối làm 1 code sau để tạo những ngày trong tháng và gán vào dòng 1 sh Tmp. Nhưng không thể nào chuyển ngày thành dd/mm/yyyy được, nhờ các Bác hướng dẫn giúp.
Đã set trong control Panel và format cell.
Xin cám ơn!
Đã set trong control Panel và format cell.
PHP:
Sub thu()
Dim wf As WorksheetFunction
Set wf = WorksheetFunction
Dim fDate As Date, iDate As Date, endM As Long
fDate = DateSerial(2010, 10, 1)
endM = Day(DateSerial(Year(fDate), Month(fDate) + 1, 0))
ReDim Arr(1 To endM, 1 To 1)
For i = 1 To endM
iDate = DateSerial(Year(fDate), Month(fDate), i)
Arr(i, 1) = CDate(iDate)
Next i
With Sheets("Tmp").[A1]
.Resize(1, 31).ClearContents
.Resize(1, endM) = wf.Transpose(Arr)
End With
Set wf = Nothing
End Sub