Lookup data

  • Thread starter Thread starter JRam
  • Start date Start date
J

JRam

I want to populate a table by referencing a cell range from another
worksheet, for example, if i type a name in a cell of worksheet1 i want to
reference all the information corresponding to that name from a different
worksheet
 
Assume MyR is a defined range (eg a 3C x 3R range)
In any other sheet,
Suppose A1 will house the defined name: MyR
Select an equivalent size range, say B1:D3 (with B1 active), paste into the
formula bar, then array-enter by pressing CTRL+SHIFT+ENTER to confirm the
formula:
=IF(A1="","",INDIRECT(A1))
 
That works very well!!
--
Thank you


Max said:
Assume MyR is a defined range (eg a 3C x 3R range)
In any other sheet,
Suppose A1 will house the defined name: MyR
Select an equivalent size range, say B1:D3 (with B1 active), paste into the
formula bar, then array-enter by pressing CTRL+SHIFT+ENTER to confirm the
formula:
=IF(A1="","",INDIRECT(A1))
 
Back
Top