Excel select a value from a cell having row number calculated
In column A i have numbers calculated like so:
[A]
[1]
[2]
[3]
[4]
[1]
[2]
[3]
...
In column K I have values:
[row] [K]
[ 1 ] [7]
[ 2 ] [3]
[ 3 ] [6]
[ 4 ] [9]
행 번호가 A열에 저장된 번호인데 K열에서 값을 어떻게 빼낼 수 있습니까?
Address()와 Cell()을 이렇게 사용해 보았습니다.
=Cell("contents",ADDRESS(A5,11))
ADDRESS supposed to return a reference to given cell provided row and column numbers (that can be taken from other cells), CELL supposed to take reference and return detail about the cell referenced (here "content" and thus value). If I use it like so:
=Cell("contents", K4)
it gives me '9', when I use ADDRESS:
=ADDRESS(A4,11)
it gives me $K$4. But when I use them together I get an error.
You could use the INDIRECT function. This takes a string and converts it into a range
More info here
=INDIRECT("K"&A2)
But it's preferable to use INDEX as it is less volatile.
=INDEX(K:K,A2)
This returns a value or the reference to a value from within a table or range
More info here
Put either function into cell B2 and fill down.
ReferenceURL : https://stackoverflow.com/questions/20283424/excel-select-a-value-from-a-cell-having-row-number-calculated
'programing' 카테고리의 다른 글
여러 파일 업로드 Jquery/Ajax 진행률 표시 (0) | 2023.09.08 |
---|---|
VBA에서 사전을 매개 변수로 통과하려면 어떻게 해야 합니까? (0) | 2023.09.08 |
MySQL(MariaDB)에서 큰 테이블에 인덱스를 만드는 데 시간이 매우 오래 걸립니다. (0) | 2023.09.08 |
Angular 2에서 관측 가능한 장치 테스트 (0) | 2023.09.08 |
Python에서 syslog에 대한 로깅을 구성하는 방법은 무엇입니까? (0) | 2023.09.08 |