What I am trying to do in a single formula is
1. Link to a sheet that has not yet been made
2. Pull the text from a cell to reference that sheet
3. take data from that sheet and put it into the cell with this formula.
Sheet Cell Content
List A1 John Doe
John Doe X1 £5.50
Jane Doe X1 £10.95
In Cell C1 of sheet 'List" I want it to show £5.50 but if I change the name in in cell A1 to 'Jane Doe' the content of cell C1 will change to £10.95. The formula must remain viable even if the sheets 'John Doe' and/or 'Jane Doe' do not exist yet.
I have created a Macro that will make a sheet that is named from the selected cell (eg 'John Doe') and copies a template layout so I know exactly where I want the data to come from (eg in this case cell X1)
I have been trying things like this to get around the fact that there are spaces in the text (and of the sheet name)
=INDIRECT("#"&A1&"!X1")
But nothing I do seems to work. Any and all help would be great as this is basically the final bit of the puzzle for me to finish of this Project
BD
1. Link to a sheet that has not yet been made
2. Pull the text from a cell to reference that sheet
3. take data from that sheet and put it into the cell with this formula.
Sheet Cell Content
List A1 John Doe
John Doe X1 £5.50
Jane Doe X1 £10.95
In Cell C1 of sheet 'List" I want it to show £5.50 but if I change the name in in cell A1 to 'Jane Doe' the content of cell C1 will change to £10.95. The formula must remain viable even if the sheets 'John Doe' and/or 'Jane Doe' do not exist yet.
I have created a Macro that will make a sheet that is named from the selected cell (eg 'John Doe') and copies a template layout so I know exactly where I want the data to come from (eg in this case cell X1)
I have been trying things like this to get around the fact that there are spaces in the text (and of the sheet name)
=INDIRECT("#"&A1&"!X1")
But nothing I do seems to work. Any and all help would be great as this is basically the final bit of the puzzle for me to finish of this Project
BD