8daveyboy8
New Member
- Joined
- Apr 21, 2017
- Messages
- 2
Good morning everyone - hope you're looking forward to the weekend. If any of you have a moment to help, I would be deeply grateful.
Not being a VBA expert, and attempting to steal code from the internet has only left me in a greater pickle! I will attempt to describe the spreadsheet I have and the task I am looking for VBA to perform. But if there is anything that is unclear, please do not hesitate to ask.
Overview:
I am attempting to take data from certain sheets in a workbook. The sheets basically contain a list of actions in rows, and corresponding dates and statuses (being outstanding, in progress, complete) in separate columns across the same row, and I am looking to consolidate all this data into one summary sheet. I will then filter this summary sheet by status so I can see clearly what has been done, or what has not been done as the case may be!
The Data:
The data of tasks and statuses is split across 10 sheets, named ("A1 - PPE", "A2 - Investmt", "A3 - C Assets", "A4 - C Liabilities", "A5 - Employee", "A6 - Tax", "A7 - Legal", "A8 - Contracts", "A9 - Finance", and "A10 - Records"). There are other sheets in the workbook, but these are the only ones that I want to consolidate data from.
The data in these sheets starts at A:7 to column I (Note: the rows above Row 7, are column titles etc). Each sheet has a different numbers of rows/tasks, and I would like the functionality such that I can add in new rows (i.e. add a new actions and statuses etc) into the sheet, and for the VBA code to automatically pick up these new rows and include them in the summary sheet.
The Summary Sheet:
I would like the summary sheet (named "Dashboard") to look similar to the underlying data sheets, and for the imported data to start at A:7 to column I (as I will keeping the same column titles above it as in the rest of the workbook).
Is it possible also to set the code up so it refreshes the summary sheet each time you open the spreadsheet?
Hopefully that is clear - I've tried my best but as with anything that is in my head, it is often difficult to put down in black and white!
Many thanks in advance - Dave
Not being a VBA expert, and attempting to steal code from the internet has only left me in a greater pickle! I will attempt to describe the spreadsheet I have and the task I am looking for VBA to perform. But if there is anything that is unclear, please do not hesitate to ask.
Overview:
I am attempting to take data from certain sheets in a workbook. The sheets basically contain a list of actions in rows, and corresponding dates and statuses (being outstanding, in progress, complete) in separate columns across the same row, and I am looking to consolidate all this data into one summary sheet. I will then filter this summary sheet by status so I can see clearly what has been done, or what has not been done as the case may be!
The Data:
The data of tasks and statuses is split across 10 sheets, named ("A1 - PPE", "A2 - Investmt", "A3 - C Assets", "A4 - C Liabilities", "A5 - Employee", "A6 - Tax", "A7 - Legal", "A8 - Contracts", "A9 - Finance", and "A10 - Records"). There are other sheets in the workbook, but these are the only ones that I want to consolidate data from.
The data in these sheets starts at A:7 to column I (Note: the rows above Row 7, are column titles etc). Each sheet has a different numbers of rows/tasks, and I would like the functionality such that I can add in new rows (i.e. add a new actions and statuses etc) into the sheet, and for the VBA code to automatically pick up these new rows and include them in the summary sheet.
The Summary Sheet:
I would like the summary sheet (named "Dashboard") to look similar to the underlying data sheets, and for the imported data to start at A:7 to column I (as I will keeping the same column titles above it as in the rest of the workbook).
Is it possible also to set the code up so it refreshes the summary sheet each time you open the spreadsheet?
Hopefully that is clear - I've tried my best but as with anything that is in my head, it is often difficult to put down in black and white!
Many thanks in advance - Dave