Change data on number change

J

Jeff

I have a table that has data in it. I would like to be able to change the
Column number and the Row Number to change what displays in A4. Is there an
easy way to do this? If I would type in Column 4 row 10 I would get Test7 in
A4 Thanks! Jeff

A B C D
1 Column 1
2 Row 8
3
4 Test 1
5
6
7
8 Test 2 Test5
9 Test3 Test6
10 Test4 Test7
 
M

Max

Put in A4: =IF(COUNT(B1:B2)<2,"",OFFSET($A$1,B2-1,B1-1))
Inputs assumed in B1: Column#, in B2: Row#
(as you indicated in your posting)
 
J

Jeff

That works very well. Thank you! Also if I would like to put the data on a
separate sheet how can I do that?
 
M

Max

Jeff said:
That works very well. Thank you!
Welcome. Pl click the "Yes" button below.
Also if I would like to put the data on a
separate sheet how can I do that?
No problem, if the data is in Sheet2 ..

In Sheet1, with the col/row inputs in B1:B2 as before,
you just use:
=IF(COUNT(B1:B2)<2,"",OFFSET(Sheet2!$A$1,B2-1,B1-1))
 
J

Jeff

That is what I needed. Thanks! You are a lot of help. I also went to your web
site. Nice!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top