JasonEnsor
Programmer
Hi Guys,
I have been given a spreadsheet to look at that currently takes a colleague about 4 hours a week to setup and format. I am slowly working through the process in my mind to see how i can automate as much of it as possible.
In the current workbook there are tabs setup from August 2012 to July 2013 (as this holds yearly data) Then a summary sheet is created that collates information from the each tab. for each month there is a column that holds % information regarding calculation values from that month.
My first thought is that for every tab in the workbook to create a column in the summary tab with the column heading being the name of the sheet. So i would have a tab called Aug 12 which would then mean my summary sheet has a column called Aug 12. I will then automate the formatting of these columns.
I am assuming i could do something like
For Each worksheet in workbook
Columns.add
worksheet.name = selected column and row
Next
Any thoughts on if this is a valid approach or ideas on how best to approach this. I can supply test worksheets if need be
Regards
Jason
I have been given a spreadsheet to look at that currently takes a colleague about 4 hours a week to setup and format. I am slowly working through the process in my mind to see how i can automate as much of it as possible.
In the current workbook there are tabs setup from August 2012 to July 2013 (as this holds yearly data) Then a summary sheet is created that collates information from the each tab. for each month there is a column that holds % information regarding calculation values from that month.
My first thought is that for every tab in the workbook to create a column in the summary tab with the column heading being the name of the sheet. So i would have a tab called Aug 12 which would then mean my summary sheet has a column called Aug 12. I will then automate the formatting of these columns.
I am assuming i could do something like
For Each worksheet in workbook
Columns.add
worksheet.name = selected column and row
Next
Any thoughts on if this is a valid approach or ideas on how best to approach this. I can supply test worksheets if need be
Regards
Jason