Home > Enterprise >  Concatenate Letter And Number in Excel - Syntax Confusion
Concatenate Letter And Number in Excel - Syntax Confusion

Time:11-04

Hope someone has some experience with the following issue I have on excel:

Imagine that I'd like to get a value from cell Ai, however I want to consider "i" as input from another cell in the workbook. To make it more concrete, if "i" was a fixed number like 5, then "=A5" operation would work. In my case, I want this number 5 to be dynamic, I wonder if someone know the method.

CodePudding user response:

Use INDEX:

=INDEX(A:A,Z1)

Where Z1 is the cell in which you put the row number.

CodePudding user response:

Using INDIRECT:

=INDIRECT("A"&B1)

where B1 contains row number.

  • Related