我有一個問題從Excel工作表中獲取值。我按照教程,但它不起作用。我還包括Excel引用到字,但我仍不能返回值
這是我的代碼:從Excel中返回一個值
Sub Return_a_Value_from_Excel()
Dim mySpreadsheet As Excel.Workbook
Dim strSalesTotal As String
Set mySpreadsheet = GetObject("C:\Documents\Book1.xls")
strSalesTotal = mySpreadsheet.Application.Range("Test").Value
Set mySpreadsheet = Nothing
Selection.TypeText "Current sales total: $" & strSalesTotal & "."
Selection.TypeParagraph
End Sub
我只是想要回那是寫在Excel中
當我將''Test''範圍改爲'「A1」'時,我的電腦上的代碼運行良好。你是否一步步運行並檢查了變量strSalesTotal?您也可以檢查發生了什麼,如果您將範圍更改爲您要閱讀的列。 –