简体   繁体   中英

How to get excel sheet 1 data in excel sheet 2 using cell number

I have two Excel sheets and I want to fetch data from the particular cell number from sheet1 to sheet2 .

In sheet2 I have two columns: the first column contain the cell number of sheet1 ; and using that cell number I want to fetch that data into the adjacent cell.

Example:

Sheet1 : A15 contains "Hello"

Sheet2 : column A contains cell name and number

Worked example: in sheet2 cell A5 contains A15 so in B5 I want "Hello" (ie the data in A15 on sheet1 )

INDIRECT

In Sheet2 , cell B5 use the formula:

=INDIRECT("Sheet1!"&A5)

INDIRECT Links

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM