Hi everyone, and thanks in advance for all of your help! I use this forum all of the time but this is my first post (as I can usually find the answer) so please bare with me...
I am trying to do something that I thought would be fairly simple, but it is turning out not to be. In essence I have a number of identical sheets, one for each project, and I would like a summary sheet, or master sheet, that consolidates all of the information from the other sheets.
Where is gets slightly more complicated is that I would like the summary sheet to populate with the sheet names of the various projects. For example, I have a table of 5 columns and 5 rows on each sheet, some cells are blank and some contain an 'x' or some other arbitrary value. The master sheet contains the same table but each cell populates with the name of the sheet where an 'x' appears in that cell.
So far I have this;
{=INDEX(Sheet_List,MATCH("x",INDIRECT("'"&Sheet_List&"'!"&CELL("address",C3)),0),1)}
I have a 'helper' sheet with a list of worksheet names (Sheet_List" and I am using a CELL reference within the INDIRECT to avoid a forced absolute cell reference so that I can copy this formula across the other cells in the summary sheet. In the final application there are hundreds of cells so I need this formula to be dynamic to avoid editing each one. The above formula works, but only seems to search the first sheet, not all. I think this issue is created by the INDIRECT resolving the Sheet_List named range but I'm not sure how else to achieve what I want...
The final application for this is a sheet with a series of tasks down the left hand side and week numbers along the top. A cross is placed in the week number column when each task is to be completed. The summary sheet then shows a full 'calendar' showing when each task is to be completed for each project. I started with a simple IF statement, checking for a 'x' in the first sheet, and then the next which worked fine until we started introducing a task being carried out on a specific week for multiple projects, hence the above modification.
Apologies for the lengthy and confusing post, I hope it makes sense! I have attached an example book.
I am trying to do something that I thought would be fairly simple, but it is turning out not to be. In essence I have a number of identical sheets, one for each project, and I would like a summary sheet, or master sheet, that consolidates all of the information from the other sheets.
Where is gets slightly more complicated is that I would like the summary sheet to populate with the sheet names of the various projects. For example, I have a table of 5 columns and 5 rows on each sheet, some cells are blank and some contain an 'x' or some other arbitrary value. The master sheet contains the same table but each cell populates with the name of the sheet where an 'x' appears in that cell.
So far I have this;
{=INDEX(Sheet_List,MATCH("x",INDIRECT("'"&Sheet_List&"'!"&CELL("address",C3)),0),1)}
I have a 'helper' sheet with a list of worksheet names (Sheet_List" and I am using a CELL reference within the INDIRECT to avoid a forced absolute cell reference so that I can copy this formula across the other cells in the summary sheet. In the final application there are hundreds of cells so I need this formula to be dynamic to avoid editing each one. The above formula works, but only seems to search the first sheet, not all. I think this issue is created by the INDIRECT resolving the Sheet_List named range but I'm not sure how else to achieve what I want...
The final application for this is a sheet with a series of tasks down the left hand side and week numbers along the top. A cross is placed in the week number column when each task is to be completed. The summary sheet then shows a full 'calendar' showing when each task is to be completed for each project. I started with a simple IF statement, checking for a 'x' in the first sheet, and then the next which worked fine until we started introducing a task being carried out on a specific week for multiple projects, hence the above modification.
Apologies for the lengthy and confusing post, I hope it makes sense! I have attached an example book.