dynamic references NOT using VB

homer1661

New Member
Joined
Mar 2, 2005
Messages
24
Hello, I hope somebody can shed some light on this problem.

I need to be able to populate a cell from user inputs that reference a worksheet, column and row selected by the user.

EG. Their are four worksheets named ws1,ws2,ws3,ws4
on ws1 cell a1=required worksheet a2=required column a3 = required row (a1 -a3 are user selected from validated cells)

a4 on ws1 needs to display the required info from a1,a2,a3 i.e worksheet,column,row

All this must be done on the worksheet(NO VB) and I cannot use the IF statement asit goes over the 10 ifs limit.

please can anybody help.

I hope the above makes sense.


Thanks
K
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
In A4 does this formula work:

Code:
=INDIRECT(A1&"!"&A2&A3)


A1 has the sheet name, A2 has the column , and A3 has the row number.
 
Upvote 0
kpark91, thanks, works perfectly sous2187 thank you but I kept getting an error with you code.

Thanks again for your help.
 
Upvote 0

Forum statistics

Threads
1,224,607
Messages
6,179,871
Members
452,949
Latest member
Dupuhini

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top