admin管理员组文章数量:1345090
i am trying to change the date format to dd/mm/yyyy from the mm/dd/yyyy.
It is weird that that only D2 to D7 has this problem, the rest of the column is fine.
Have tried using: Columns("D").NumberFormatLocal = "dd/mm/yyyy" but it does not work.
The code get all the clock in and out date and time of a specific staff from the main Data to Column A & B.
The next line of code get the first clock in timing and last clock out timing of that day. This is done by using scripting dictionary.
However, my date not sure why it has become like this.
Dim oDicMin As Object, oDicMax As Object, rngData As Range
Dim i As Long, vKey, vTmp
Dim arrData
Dim staffPsn As String
Columns("A:B").ClearContents
Range("C2:F50").ClearContents
Range("L2:P22").ClearContents
staffLR = Sheets("All").Cells(Rows.Count, 1).End(xlUp).Row
staffPsn = Sheet1.Range("j6")
counter = 1
For x = 5 To staffLR
If staffPsn = Sheets("All").Cells(x, 5) Then
Sheet1.Cells(counter, 1) = CDate(Sheets("All").Cells(x, 1))
Sheet1.Cells(counter, 2) = CDate(Sheets("All").Cells(x, 3))
counter = counter + 1
End If
Next x
Set oDicMin = CreateObject("scripting.dictionary")
Set oDicMax = CreateObject("scripting.dictionary")
' load data into an array
Set rngData = Range("A1").CurrentRegion
arrData = rngData.Value
' loop through data
For i = LBound(arrData) To UBound(arrData)
vKey = arrData(i, 1) ' Date (Col A) as the key
vTmp = arrData(i, 2)
If oDicMin.exists(vKey) Then
If vTmp < oDicMin(vKey) Then
oDicMin(vKey) = vTmp ' update Min
End If
If vTmp > oDicMax(vKey) Then
oDicMax(vKey) = vTmp ' update Max
End If
Else ' Init. min and max
oDicMin(vKey) = vTmp
oDicMax(vKey) = vTmp
End If
Next i
' header of output
Range("D1:F1").Value = Array("Date", "Clock-In", "Clock-Out")
Columns("E:F").NumberFormatLocal = "[h]:mm:ss"
Columns("C").NumberFormatLocal = "dd/mm/yyyy"
Dim iCnt As Long
iCnt = oDicMin.Count
' write output to sheet
Range("D2").Resize(iCnt, 1) = Application.Transpose(oDicMin.keys)
Range("E2").Resize(iCnt, 1) = Application.Transpose(oDicMin.items)
Range("F2").Resize(iCnt, 1) = Application.Transpose(oDicMax.items)
i am trying to change the date format to dd/mm/yyyy from the mm/dd/yyyy.
It is weird that that only D2 to D7 has this problem, the rest of the column is fine.
Have tried using: Columns("D").NumberFormatLocal = "dd/mm/yyyy" but it does not work.
The code get all the clock in and out date and time of a specific staff from the main Data to Column A & B.
The next line of code get the first clock in timing and last clock out timing of that day. This is done by using scripting dictionary.
However, my date not sure why it has become like this.
Dim oDicMin As Object, oDicMax As Object, rngData As Range
Dim i As Long, vKey, vTmp
Dim arrData
Dim staffPsn As String
Columns("A:B").ClearContents
Range("C2:F50").ClearContents
Range("L2:P22").ClearContents
staffLR = Sheets("All").Cells(Rows.Count, 1).End(xlUp).Row
staffPsn = Sheet1.Range("j6")
counter = 1
For x = 5 To staffLR
If staffPsn = Sheets("All").Cells(x, 5) Then
Sheet1.Cells(counter, 1) = CDate(Sheets("All").Cells(x, 1))
Sheet1.Cells(counter, 2) = CDate(Sheets("All").Cells(x, 3))
counter = counter + 1
End If
Next x
Set oDicMin = CreateObject("scripting.dictionary")
Set oDicMax = CreateObject("scripting.dictionary")
' load data into an array
Set rngData = Range("A1").CurrentRegion
arrData = rngData.Value
' loop through data
For i = LBound(arrData) To UBound(arrData)
vKey = arrData(i, 1) ' Date (Col A) as the key
vTmp = arrData(i, 2)
If oDicMin.exists(vKey) Then
If vTmp < oDicMin(vKey) Then
oDicMin(vKey) = vTmp ' update Min
End If
If vTmp > oDicMax(vKey) Then
oDicMax(vKey) = vTmp ' update Max
End If
Else ' Init. min and max
oDicMin(vKey) = vTmp
oDicMax(vKey) = vTmp
End If
Next i
' header of output
Range("D1:F1").Value = Array("Date", "Clock-In", "Clock-Out")
Columns("E:F").NumberFormatLocal = "[h]:mm:ss"
Columns("C").NumberFormatLocal = "dd/mm/yyyy"
Dim iCnt As Long
iCnt = oDicMin.Count
' write output to sheet
Range("D2").Resize(iCnt, 1) = Application.Transpose(oDicMin.keys)
Range("E2").Resize(iCnt, 1) = Application.Transpose(oDicMin.items)
Range("F2").Resize(iCnt, 1) = Application.Transpose(oDicMax.items)
Share
Improve this question
edited yesterday
James
asked yesterday
JamesJames
131 silver badge4 bronze badges
11
|
Show 6 more comments
1 Answer
Reset to default 0Is this what you are trying?
Option Explicit
Sub Sample()
Dim ws As Worksheet
Set ws = Sheet1 '<~~ Change this to the relevant sheet
Dim dateParts() As String
Dim lRow As Long, i As Long
Dim dayPart As Integer, monthPart As Integer, yearPart As Integer
Dim fixedDate As Date
With ws
lRow = .Range("D" & .Rows.Count).End(xlUp).Row
For i = 2 To lRow
If InStr(.Range("D" & i).Value, "/") > 0 Then
dateParts = Split(.Range("D" & i).Value, "/")
If UBound(dateParts) = 2 Then
monthPart = Val(dateParts(0))
dayPart = Val(dateParts(1))
yearPart = Val(dateParts(2))
'~~> If month > 12, it’s probably already
'~~> in dd/mm/yyyy format, so skip
If monthPart <= 12 And dayPart > 12 Then
'~~> Treat it as MM/DD/YYYY
'~~> and flip to DD/MM/YYYY
fixedDate = DateSerial(yearPart, monthPart, dayPart)
.Range("D" & i).Value = fixedDate
'<~~ Forcing excel to use literal slashes
.Range("D" & i).NumberFormat = "dd\/mm\/yyyy"
End If
End If
End If
Next i
End With
End Sub
Before
After
本文标签: arraysHow to change Date Format to ddmmyyyy from the mmddyyyy in vbaStack Overflow
版权声明:本文标题:arrays - How to change Date Format to ddmmyyyy from the mmddyyyy in vba? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743794737a2540218.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
D2-D7
.. this is not a solution by the way just a quick fix. As to why things got automatically intepreted that way seems related to the fact that the dates inD2-D7
are valid dates inmm/dd/yyyy
while the next rows have the first part starting from13
. If you needed to solve the issue via script I think you needed to force the conversion ofoDicMin.keys
to date but I can't be sure – Diego D Commented yesterday