我正在使用Excel 2013.我有两个变量有两个不同的单元格引用。我需要在代码的另一部分的范围内使用它。
Public i As Integer
Public a, b As Ranges
' i is a public integer that comes from another code - last row number
' in a column, its value for now is 432
a = "Q12"
b = "Q" & j
Sheets("O&O GS&B Expense Flip").range("**Q12:Q432**").cells
'.....rest of code
而不是Q432我希望 b 处于使其动态化的范围内。