0
我想輸入一系列單元格地址到VBA中的數組中。數組範圍地址
我的代碼目前狀態:
Do
Range1 = Application.InputBox(Prompt:="Please select the cell to add to the Array. Press ""Cancel"" when all Ranges have been added.", Title:="Range Select", Type:=8)
If Range1 <> False Then
ReDim Preserve TestArray(Count)
Set TestArray(Count) = Range1.Address
End If
Count = Count + 1
Loop Until Range1 = False
最後,我在尋找類似(A1,C3,D6,G8)
這是行不通的。
TestArray(I)。價值= TestArray(I).value的* 1.01
我如何創建範圍的數組:
然後,我會說是這樣以後使用這些範圍?
在此先感謝
如果我選擇輸入框,類型0,我會接受一個字符串,使得單元格A1將被存儲在陣列中作爲像「= R1C1」的字符串 我可以然後分析此,並使用細胞功能 但有人可能知道更好的方法? – user78913