+ Reply to Thread
Results 1 to 13 of 13

Want source (raw) data to populate in other sheets when updated daily

  1. #1
    Registered User
    Join Date
    07-24-2015
    Location
    San Jose, Costa Rica
    MS-Off Ver
    2013
    Posts
    15

    Want source (raw) data to populate in other sheets when updated daily

    Greeting Excel Friends,

    I was hoping someone can help me with a problem I have.

    When I update a series of data daily (creating new row) I would like this data to feed into other worksheets. A new row will be inserted at the bottom of my large dataset. I assume it is easier to place the new data at the bottom of my dataset instead of having to create a new row at the top.

    Please take a look at my spreedsheet to fully understand my question.

    Thanks All!forumexample2.xlsx

    PS

    Just to be clear I am looking for the data to feed into the "Rates" sheet as a simple formula =(100-data) and the '3M Calendars" sheet to simply subtract one piece of data from another.
    Last edited by pgp007; 10-29-2015 at 04:55 PM.

  2. #2
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Want source (raw) data to populate in other sheets when updated daily

    Try this:

    Please Login or Register  to view this content.
    If I've helped you, please consider adding to my reputation - just click on the liitle star at the left.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~(Pride has no aftertaste.)

    You can't do one thing. XLAdept

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~aka Orrin

  3. #3
    Forum Contributor
    Join Date
    02-27-2004
    Location
    California, United States
    MS-Off Ver
    Excel 2016
    Posts
    315

    Re: Want source (raw) data to populate in other sheets when updated daily

    I do this every day with my workbooks. My source data has 10-30 lines added each day. My other workbooks (about 15 of them) use the COUNTIFS statement and use cell references A:A (or B:B, C:C, whatever) to reference the whole row, find the one row I want to use and pull the data from that row (sometimes using the index/match combo).

    I am pulling the data and not pushing it though...

  4. #4
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Want source (raw) data to populate in other sheets when updated daily

    @ CWatsonJr,

    Start your own thread and I'll try to help you

  5. #5
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: Want source (raw) data to populate in other sheets when updated daily

    Orin, I think CW was offering a suggestion to the OP, not asking a question? (unless I missed the question )
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  6. #6
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Want source (raw) data to populate in other sheets when updated daily

    Hi Ford,

    We, obviously, have different interpretations

    @ CW - please elucidate!

  7. #7
    Forum Contributor
    Join Date
    02-27-2004
    Location
    California, United States
    MS-Off Ver
    Excel 2016
    Posts
    315

    Re: Want source (raw) data to populate in other sheets when updated daily

    Ford is correct. I was not asking for assistance

  8. #8
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Want source (raw) data to populate in other sheets when updated daily

    Thanks CW - reparation is bestowed

  9. #9
    Registered User
    Join Date
    07-24-2015
    Location
    San Jose, Costa Rica
    MS-Off Ver
    2013
    Posts
    15

    Re: Want source (raw) data to populate in other sheets when updated daily

    Hola Orrin,

    Thanks for your help, I really appreciate it.

    I am a bit lost....is this VBA? Do I create a macro? If you could further explain it would be appreciated!

  10. #10
    Registered User
    Join Date
    07-24-2015
    Location
    San Jose, Costa Rica
    MS-Off Ver
    2013
    Posts
    15

    Re: Want source (raw) data to populate in other sheets when updated daily

    Thanks a lot for your post CW! I really appreciate your feedback!

    Could you please provide me with the exact formula? Did you happened to see my example?

  11. #11
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Want source (raw) data to populate in other sheets when updated daily

    Hi pgp,

    Sorry

    Directions for running the routine(s) just supplied

    If you haven't used macros before you'll need to go to:
    File- options - trust center -trust center settings - macro settings ,
    the second option down (disable all macros with notification)

    Then - Copy the code to the clipboard

    Open your Workbook

    Press ALT + F11 to open the Visual Basic Editor.

    Select "Module" from the Insert menu

    Type "Option Explicit" then paste the code under it

    With the cursor between Sub and End Sub press F5 (F8 to Single Step)

    OR

    Press ALT + Q to close the code window.

    Press ALT + F8 then double click on the macro name
    *Be sure to save the book with the code as Macro-Enabled

    like this:
    Attached Files Attached Files
    Last edited by xladept; 10-30-2015 at 03:20 PM.

  12. #12
    Registered User
    Join Date
    07-24-2015
    Location
    San Jose, Costa Rica
    MS-Off Ver
    2013
    Posts
    15

    Re: Want source (raw) data to populate in other sheets when updated daily

    Thanks gain for all your help! really appreciated

    I did everything as instructed but noticed a few problems/doubts. first it seems my function keys weren't executing as expected. i.e. visual basic editor didn't open with ALT + F11, F5 unresponsive

    But anyway, I think everything was saved correctly in Visual basic editor.

    So this automatically creates the macro correct? Do I need to assign the macro to a button?

    I just answered my own question. It did work in the end...thanks a million for your time and help!
    Last edited by pgp007; 11-03-2015 at 04:45 PM.

  13. #13
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Want source (raw) data to populate in other sheets when updated daily

    You're welcome and thanks for the rep!

+ 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. [SOLVED] I need daily figures from 5 sheets adding together and automatically populate weekly sheet
    By Philm1971 in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 07-22-2015, 07:07 AM
  2. Replies: 3
    Last Post: 06-14-2012, 02:57 PM
  3. Update drop down menu data when source is updated
    By hostman in forum Excel General
    Replies: 0
    Last Post: 01-13-2011, 11:44 AM
  4. Refresh XML data in a Map if the source file is updated
    By nickTokyo in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 04-08-2009, 01:28 AM
  5. [SOLVED] Can I preserve chart formatting when the source data is updated?
    By JasenD in forum Excel Charting & Pivots
    Replies: 3
    Last Post: 06-19-2006, 08:45 AM
  6. How to link a daily updated table data on website to Excel?
    By heatwave in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 08-08-2005, 08:50 AM
  7. [SOLVED] What if I DON'T want the chart to be updated when source data changes?
    By arhooley in forum Excel Charting & Pivots
    Replies: 2
    Last Post: 06-09-2005, 01:05 AM

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