0
我構建了一個vlookup代碼,但似乎無法理解我做錯了什麼。我收到運行時錯誤'9':下標超出範圍錯誤消息。Vlookup運行時錯誤9
Cells(lrow + 1, 2) = Application.WorksheetFunction.vlookup(_
Corp.Sheets("Sheet3").Range("$B$1"), _
Workbooks("S:\_Shared Files MTL\Corporate Spreads\Weekly Sheets\" & _
myvalue & "_weekly sheet.xls"). _
Sheets("Pricing Sheet").Range("$B$18:$L$232"), 5, False)
我想從其他工作簿中的數據拉到當前工作簿(Dim Corp)。
其他工作簿具有動態名稱和日期(myvalue)每週更改。
我要求用戶輸入一個消息框日期:
myvalue = InputBox("Insert date of file to upload in format yy_mm_dd", "User date", Format(Now(), "yy_mm_dd"))
任何想法,爲什麼VLOOKUP公式不工作?