Forum Discussion
J. G.
Jan 25, 2018Copper Contributor
EXCEL - Use dynamically created string as refference to table objects
Hello there, i was trying to dynamically create links in a column of an "addresstable" in a workbook. All the necessary information is stored in separate dedicated tables in the document. First, i ...
- Jan 25, 2018
If the table string builds correctly, then you need to use the Indirect() function to turn that string into a reference. Like this
=INDEX(INDIRECT([@[tablename_string]]),2)
Jan 25, 2018
If the table string builds correctly, then you need to use the Indirect() function to turn that string into a reference. Like this
=INDEX(INDIRECT([@[tablename_string]]),2)
- J. G.Jan 25, 2018Copper ContributorThank you very much Ingeborg. I had tried indirect before, but it wouldn't work. I now discovered i really had (unsupprisingly) a syntactic error in the formula. So, thanks for pointing me into the right direction again. :) Jan