I have a row which contains a number: example A1 = 10 Now I want to get the value of Row B10, but the Row here is B(Value of A1). i need some thing like =B(A1)) so this value will = value of Column B but the row is based on value of A1
相关问题
- Excel sunburst chart: Some labels missing
- Error handling only works once
- Excel formula in VBA code
- Excel VBA run time error 450 from referencing a ra
- DoCmd.TransferSpreadsheet is not recognizing works
相关文章
- Get column data by Column name and sheet name
- programmatically excel cells to be auto fit width
- Unregister a XLL in Excel (VBA)
- How to prevent excel from truncating numbers in a
- numeric up down control in vba
- Declare a Range relative to the Active Cell with V
- What's the easiest way to create an Excel tabl
- How to create a hyperlink to a different Excel she
As commented, you can use INDIRECT
=INDIRECT("B"&A1)
use indirect: