0
我正在運行以下宏,但希望它具有更多功能。此電子表格用於維護客戶並跟蹤多個州內的銷售值。我爲每個工作狀態選擇工作簿。我希望宏提示我輸入當前宏中的數據。我可以添加一些東西給這個宏,這樣它會首先提示我選擇一個基於表名的工作表?我需要我的宏來提示我根據表名選擇工作表
Sub TestMacro()
Dim dblRow As Double, dtDate As Date, strCustomer As String
Dim strAddress As String, strZip As String, strEst As String
dblRow = InputBox("What Row to Enter On")
dtDate = InputBox("Date", , Date)
strCustomer = InputBox("Customer")
strAddress = InputBox("Address")
strZip = InputBox("Zip Code")
strEst = InputBox("Estimated Value")
Range("A" & dblRow).Value = dtDate
Range("B" & dblRow).Value = strCustomer
Range("C" & dblRow).Value = strAddress
Range("D" & dblRow).Value = strZip
Range("E" & dblRow).Value = strEst
End Sub
我也忘了補充一點,我想dblRow = InputBox(「什麼行進入ON」),而不是自動選擇下一個可用的行不包含數據。 – user2453620