问题描述
- 用bva让一个单元格显示另一个单元格的修改日期,且能决定日期显示的格式
-
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count = 1 Then
If Target.Column = 4 Then
Cells(Target.Row, 6) = Now
End If
End If
End Sub
这是我在网上收的,日期的格式太详细,我想只显示月、日就可以了。右键单元格,设置单元格格式不行,能否在vba中就把日期的格式定义好。
解决方案
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count = 1 Then
If Target.Column = 4 Then
Cells(Target.Row, 6).NumberFormatLocal = "yyyy-m-d" '年月日
'Cells(Target.Row, 6).NumberFormatLocal = "m-d" '月日
Cells(Target.Row, 6) = Now
End If
End If
End Sub
解决方案二:
有截图你看,自动显示的时间还是年月日,时分秒,不是,月日
解决方案三:
我想要的是 就像下半部那样出现时间,而不是像上半部那样
时间: 2024-11-08 18:27:26