如何用VBA语言将EXCEL中的某一列单元格格式为 yyyy-mm-dd hh:mm:ss 呢?

2024-11-27 22:01:56
推荐回答(3个)
回答1:

假设你要改变D列
range("D:D").numberformatlocal="yyyy-mm-dd hh:mm:ss "

回答2:

Selection.NumberFormatLocal = "yyyy-mm-dd hh:mm;ss;@"

回答3:

Dim strtemp$, strAdd$
strtemp = Trim(ActiveCell.Value)
strAdd = ActiveCell.Address
If Len(strtemp) > 0 Then
ActiveCell.Offset(0, 1).Value = Format(Now, "yyyy-mm-dd hh:mm:ss")
End If