- ©«¤l
- 2833
- ¥DÃD
- 10
- ºëµØ
- 0
- ¿n¤À
- 2889
- ÂI¦W
- 0
- §@·~¨t²Î
- ¡e²¤¡f
- ³nÅ骩¥»
- ¡e²¤¡f
- ¾\ŪÅv
- 100
- ©Ê§O
- ¨k
- ¨Ó¦Û
- ¡e²¤¡f
- µù¥U®É¶¡
- 2013-5-13
- ³Ì«áµn¿ý
- 2024-11-16
|
¦^´_ 8# s7659109
Private Sub Worksheet_Change(ByVal Target As Range)
With Target
If .Count > 1 Or .Row = 1 Then Exit Sub
If .Column = 5 Then
If .Value = "" Then .Cells(1, -3).Resize(1, 6).ClearContents: Exit Sub
.Cells(1, -3) = Format(Date, "emmdd")
.Cells(1, -2) = 123
.Cells(1, -1) = 345
.Cells(1, 2).Select
ElseIf .Column = 6 Then
If .Value <> "" Then .Cells(2, 0).Select
End If
End With
End Sub |
|