+ Reply to Thread
Results 1 to 7 of 7

Using VBA to automate copying of data from master sheet to linked spreadsheets

  1. #1
    Registered User
    Join Date
    08-04-2012
    Location
    cardiff
    MS-Off Ver
    Excel 2007
    Posts
    49

    Using VBA to automate copying of data from master sheet to linked spreadsheets

    I'm struggling to work out how to automate the process of transferring data from my main income - expenditure master sheet to the individual project sheets within the same workbook.

    I need to move the data shown in columns A - D to the project spreadsheets if there is a value show in columns J - W, I would also need to copy over the value in columns J - W and show a positive figure in column E of the project sheet and a minus figure in column F

    I have attached an example of my spreadsheet with 14 different projects some don't have entries as of yet but it frequently changes with additional projects being added.Sample Accounts Data.xlsx

    Thanking you in anticipation of saving me lots of time

  2. #2
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Using VBA to automate copying of data from master sheet to linked spreadsheets

    Hi,

    If you really do want to save time then you need to urgently reconsider the layout of your current Income/Expenditure sheet. Your current layout does not lend itself to easy analysis. You should be prepared to capture your data in a simple two dimensional table of data where each column represents a particular field of information, e.g.

    Date
    Details
    Project Ref
    Chq No
    Income/Expenditure (i.e. each row will contain either the word "Income" or "Expenditure")
    Amount
    Uncleared

    Once you have that in place then the next question is what are you trying to achieve. If it's the ability to analyse particular projects then arguably simply filtering the sheet will give you all you need, or maybe a Pivot Table.
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  3. #3
    Registered User
    Join Date
    08-04-2012
    Location
    cardiff
    MS-Off Ver
    Excel 2007
    Posts
    49

    Re: Using VBA to automate copying of data from master sheet to linked spreadsheets

    Dear Richard

    Thank you for your reply, I need to be able to show on my master sheet (income - expenditure) an overview of the income and outgoings for each project and then further detail is analysed in the individual project sheets, I normally also link a summary sheet which picks up the totals spent on each budget heading eg salaries, rent etc.

    I would be keen to make any changes that would make the work less time consuming, am I right in assuming from your suggestion that I would need a row for each project rather than being able to split one amount over several projects on one row

    The analysis is important to be able to show funders exactly how their money has been spent and also at yearend to easily produce final accounts

    Thanks

    Sue

  4. #4
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Using VBA to automate copying of data from master sheet to linked spreadsheets

    Hi Sue,

    The point about a database is that it records each unique record. The concept of a dedicated row for each project is the wrong way to view this. You would have a row for each occurrence of a single item of income or expenditure. Looking at my original suggestion I see I missed out the vital field (or column) for the Type of Expenditure. So the complete list of Database columns would be.

    Date
    Details (i.e. description)
    Project Ref
    Chq No
    Income/Expenditure (i.e. each row will contain either the word "Income" or "Expenditure")
    Expenditure Type (e.g. Salary, Staff Expenses, Telephone, Rent, Insurance
    Amount
    Uncleared


    So for instance if you had say 5 items of expenditure and 1 item of Income for a particular project on a particular day you would create 6 data rows.

    In practice you would use Data Validation drop down cells to populate columns like the Expenditure Type column which must have a specific reference. i.e. you would pick the allowable items from a list of given items. This not only avoids the need to type stuff but more importantly ensures all items of a similar nature may subsequently be totalled or analysed where necessary.

    When I design systems like this, for user data entry I usually provide a single 'data entry row' above the data which the user completes. Then when all cells have been completed in this 'new data entry record' the user presses a button and a simple macro adds that record to the database and clears out the data entry cells ready for a new record.

  5. #5
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Using VBA to automate copying of data from master sheet to linked spreadsheets

    ..further to my last post I'm attaching your original workbook with an example of how the Database sheet would be populated.

    I've also added a simple Pivot Table which might give you an idea of the sort of analysis you can get. But remember a Pivot Table is extremely flexible and can be altered to show different aspects in seconds by dragging and dropping the field (column labels) around in the PT. Don't think the simple example I've given is all you can do or see.
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    08-04-2012
    Location
    cardiff
    MS-Off Ver
    Excel 2007
    Posts
    49

    Re: Using VBA to automate copying of data from master sheet to linked spreadsheets

    Thank you Richard, I'll give that a try, not sure if it will work for my committee as they like to see easily how much is left in each fund (project) but I might try it for a less complex group I volunteer with and see how I get on with regards to the pivot table reports - it's been a long time since I used them. I like the thought of the data validation to limit the expenditure items.

    Thank you for your time

    Sue

  7. #7
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Using VBA to automate copying of data from master sheet to linked spreadsheets

    Quote Originally Posted by suedavies View Post
    Thank you Richard, I'll give that a try, not sure if it will work for my committee as they like to see easily how much is left in each fund (project) but I might try it for a less complex group I volunteer with and see how I get on with regards to the pivot table reports - it's been a long time since I used them. I like the thought of the data validation to limit the expenditure items.

    Thank you for your time

    Sue
    To see how much is left in each fund just introduce an opening balance record for each project in (probably) the Income category. Then the natural sum in the PT will show the balance on each project.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 1
    Last Post: 07-11-2015, 11:20 AM
  2. automatically copying data to linked sheet
    By suedavies in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 08-07-2014, 04:31 AM
  3. Data copying error from master sheet
    By naga in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-02-2013, 12:10 AM
  4. Sort and copying info from master spreadsheet to other spreadsheets
    By Beth Watters in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-14-2013, 05:38 AM
  5. Replies: 4
    Last Post: 08-26-2009, 02:47 AM
  6. Copying Data from sub sheets to master sheet?
    By kaushik_hr in forum Excel - New Users/Basics
    Replies: 1
    Last Post: 12-14-2006, 02:08 PM
  7. Copying spreadsheets in directory into master spreadsheet
    By dtguitarfan in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-17-2005, 04:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1