geoframe中怎么生成时间切片数据体

2025-05-05 19:56:42
推荐回答(1个)
回答1:

右击工作表标签》查看代码》分别粘贴下面的代码

问题1

Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
For Each c In Target.Cells
With c
If .Address = "$B$1" Then Range("A1") = Format(Date, "yyyy年mm月dd日")
End With
Next
Application.EnableEvents = True
End Sub