Forum Discussion
mtscho
Jan 12, 2019Copper Contributor
create a list
Hi Experts, i have an Excel file with 35 identical structured spreadsheets and i need a list which contains cell a2 and n17 from each spreadsheet displayed in a list. which function do I need to use?...
- Jan 13, 2019
That looks like
with formula in B2
=INDIRECT("'"&A2&"'!N17")(drag it down)
SergeiBaklan
Jan 12, 2019Diamond Contributor
You may create helper list with names of all your sheets and use it with INDIRECT to pickup your values.
mtscho
Jan 13, 2019Copper Contributor
Thanks Sergei, what would then the Syntax look like, if I want the value from cell N17 for example?
First item on the helper list is Tambour
First item on the helper list is Tambour
- SergeiBaklanJan 13, 2019Diamond Contributor
That looks like
with formula in B2
=INDIRECT("'"&A2&"'!N17")(drag it down)
- mtschoJan 14, 2019Copper Contributor
Thanks Sergei!