简体   繁体   中英

Excel How to input Cell with column letter and row number (dynamic) No VBA

let's say in Cell A1 I have the value "A". In Cell B1 I have the value "2". Is there a way to make a reference to the Cell A2 with the value of these two cells?

I was thinking about something along the way of =A1&B1 , but it does not work.

The reason I want this is I want to generate a dynamic row number eg with the MATCH() function and use this row number (eg A&MATCH() ). Is there a way to do this?

I know how to do it with VBA, but is there a way to do it without VBA?

Thanks to all in advance.

Use the INDIRECT() Function:

=INDIRECT(A1 & B1)

If The column remains A then you could:

=INDEX(A:A,B1)

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