View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
[email protected][_2_] Jason.Alden.Benoit@gmail.com[_2_] is offline
external usenet poster
 
Posts: 8
Default Dynamic cell reference using INDIRECT..

On Jul 27, 3:24 am, "Harlan Grove" wrote:
wrote...
Is there a way to take this formula "=INDIRECT("'"&$P$3&"'!X9")" and
make X9 dynamic upon copying to other cells? For P3 I only need to
remove the $'s.


=INDIRECT("'"&$P$3&"'!"&CELL("Address",X9))

or if you want it internationalization-safe,

=INDIRECT(ADDRESS(ROW(X9),COLUMN(X9),,,$P$3))


I am not sure what internationalization safe could mean except if
referring to another language version of excel. This did the trick, I
still have a lot of editing while copy/pasting to do but this will
make it much better! Thanks!