如何将VB中计算的结果保存到Excel中
Private Sub Command1_Click()n = Val(Text5.Text)
d = Val(Text6.Text)
vd = 3.14 / 60 * n * d * 0.1 * 0.1 * 0.1
Text2.Text = vd
If Dir("D:\VB程序(千万别动)\excel.bz") = "" Then '
Set xlApp = CreateObject("Excel.Application") '
xlApp.Visible = True '
Set xlBook = xlApp.Workbooks.Open("E:\VB程序(千万别动)\数据.xls") '
Set xlsheet = xlBook.Worksheets(1) '
xlsheet.Activate '
xlsheet.Cells(1, 1) = "Val(Text2.Text)" '
xlBook.RunAutoMacros (xlAutoOpen)
Else
MsgBox ("EXCEL已打开")
End If
End Sub
问:这个计算数值怎么显示,如果我有很多这样的公式需要保存到这一个Excel中应该怎么编写代码?