Forum Discussion
warrevar
Jul 24, 2019Brass Contributor
Indirect Function - Referencing Table Columns
I know you can use the INDIRECT function to reference a cell from a different worksheet... INDIRECT("'"&sheet&"'!"&name) ...But I'm wondering if you can use it to reference a column heading i...
- Jul 25, 2019
SergeiBaklan Thank you! I also needed to put the name of the table in quotes so this ended up being the final syntax...
INDIRECT( "TableName" & "[" & ColumnName & "]")
SergeiBaklan
Jul 24, 2019Diamond Contributor
warrevar
Jul 25, 2019Brass Contributor
SergeiBaklan Thank you! I also needed to put the name of the table in quotes so this ended up being the final syntax...
INDIRECT( "TableName" & "[" & ColumnName & "]")
- SergeiBaklanJul 25, 2019Diamond Contributor
TableName and ColumnName could be references to cells, named cells, simply texts. If you consider first as text when INDIRECT("TableName[" & ColumnName & "]").