VB如何获得当前计算机的日期,并写入excel表格内某一单元格
4个回答
展开全部
Private Sub Command1_Click()
Dim objExcel As Object
Dim t As String '定义时间变量
Dim p As String '定义文件路径与文件名
Dim s As String '定义表名
'例如你的文件在c:\book1.xls,表为sheet1
t = Time
p = "c:\book1.xls"
s = "sheet1"
Set objExcel = CreateObject("Excel.Application")
Set xlbook = objExcel.Workbooks.Open(p)
Set xlsheet = xlbook.Worksheets(s)
objExcel.Visible = True '设置表可见或不可见
xlsheet.cells(1, 1) = t
Set xlsheet = Nothing
Set xlbook = Nothing
Set objExcel = Nothing
End Sub
Dim objExcel As Object
Dim t As String '定义时间变量
Dim p As String '定义文件路径与文件名
Dim s As String '定义表名
'例如你的文件在c:\book1.xls,表为sheet1
t = Time
p = "c:\book1.xls"
s = "sheet1"
Set objExcel = CreateObject("Excel.Application")
Set xlbook = objExcel.Workbooks.Open(p)
Set xlsheet = xlbook.Worksheets(s)
objExcel.Visible = True '设置表可见或不可见
xlsheet.cells(1, 1) = t
Set xlsheet = Nothing
Set xlbook = Nothing
Set objExcel = Nothing
End Sub
展开全部
用得着么??还是有其它用??
其实你在想要取当前日期的单元格中输入:
=now()
就行了的
其实你在想要取当前日期的单元格中输入:
=now()
就行了的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Cells(R,C)=date()
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
=now
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询