+ Reply to Thread
Results 1 to 15 of 15

Excel 2007 : Getting data from one sheet to a dynamic sheet

  1. #1
    Registered User
    Join Date
    01-03-2011
    Location
    York, NE
    MS-Off Ver
    Excel 2007
    Posts
    10

    Getting data from one sheet to a dynamic sheet

    Hey, all.

    I have two spreadsheets in the same workbook: Data and Calendar. Data is entered in on the Calendar and needs to show up on the Data sheet.

    However, the Data sheet changes each week to reflect the dates.

    I need to be able to extract the data from the Calendar so that each day has the appropriate data (sheet has been attached to show what I'm talking about).

    For example, the Data sheet has seven 'columns', one for each day, starting with Monday. So, I would enter in 1/3/11 (the dates in the other columns update to reflect that) and the data from the Calendar for that week would be pulled into the Data sheet. If I change the date to 1/10/11, then data for the next week should be pulled in.

    Does that make sense? Can it even be done?

    I can't use macros or VBA as this is for work and those things are disabled. I've tried using VLOOKUP, HLOOKUP, INDEX, so on and so forth, but nothing seems to be working.

    Any help would be greatly appreciated.

    Thanks!
    Attached Files Attached Files
    Last edited by EBHinton; 01-05-2011 at 04:27 PM.

  2. #2
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,169

    Re: Getting data from one sheet to a dynamic sheet

    Why not use Outlook?
    One test is worth a thousand opinions.
    Click the * Add Reputation below to say thanks.

  3. #3
    Registered User
    Join Date
    01-03-2011
    Location
    York, NE
    MS-Off Ver
    Excel 2007
    Posts
    10

    Re: Getting data from one sheet to a dynamic sheet

    Other people need to be able to access the spreadsheets. But thanks for the idea.

  4. #4
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,169

  5. #5
    Registered User
    Join Date
    01-03-2011
    Location
    York, NE
    MS-Off Ver
    Excel 2007
    Posts
    10

    Re: Getting data from one sheet to a dynamic sheet

    Thanks for the info; however, the data needs to be in the workbook in order to keep things organized and centralized (it's a work thing).

  6. #6
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,169

    Re: Getting data from one sheet to a dynamic sheet

    We actually get a lot of questions like these, so it is no problem. Lots of people have standardized on Excel and it is the workhorse program for lots of offices. The problem is that it takes a lot of work to smudge Excel into other types of uses, like schedules. Excel is really versatile so it can be done in a lot of cases. That said, Outlook is a lot better for keeping and sharing schedules and communicating changes using email. It just takes a lot of work to do it with Excel.

    Sorry I couldn't be of more help. Perhaps one of the forum experts has a good suggestion.

  7. #7
    Registered User
    Join Date
    01-03-2011
    Location
    York, NE
    MS-Off Ver
    Excel 2007
    Posts
    10

    Re: Getting data from one sheet to a dynamic sheet

    No worries; I appreciate it.

    Sometimes we're just kind of limited in what we can do. If I had my way, I'd just write a program to do all of this stuff that I need done.

  8. #8
    Registered User
    Join Date
    01-03-2011
    Location
    York, NE
    MS-Off Ver
    Excel 2007
    Posts
    10

    Re: Getting data from one sheet to a dynamic sheet

    Had an idea.

    Is it possible to change the reference of a range of cells within a formula?

    For example (using the attached files above): if the columns reference a certain range on another sheet (in this case, one week) based on the date in the first column of the Data sheet, can I change the reference to a different range when the date changes?

    So, with a date of 1/3/11, the range is 'Calendar!$A$10:$O$28'. When the date changes to 1/11/11, the range changes to 'Calendar!$A$30:$O$45'.

    Is there a way to do this without going through every time and changing every reference by hand?

  9. #9
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,169

  10. #10
    Registered User
    Join Date
    01-03-2011
    Location
    York, NE
    MS-Off Ver
    Excel 2007
    Posts
    10

    Re: Getting data from one sheet to a dynamic sheet

    I think that's pretty close to what I want, although I don't really understand the 'OFFSET' function. Trying to figure out how it'll work when I change the date.

    Thanks!

  11. #11
    Registered User
    Join Date
    01-03-2011
    Location
    York, NE
    MS-Off Ver
    Excel 2007
    Posts
    10

    Re: Getting data from one sheet to a dynamic sheet

    Eureka!

    After messing around with several different things, finally found something that works.

    @Marvin: thanks for the links as that helped me think about things differently with the 'OFFSET' function.

    For those that might be interested, here's what I did:

    Please Login or Register  to view this content.

    I use the 'MATCH' to determine what row the date shows up on and then use 'OFFSET' to get the data from the calendar. The '+Calendar!Q11' is a number just to add to the 'MATCH' to increase the row count.

    Ran it through several different tests and it works just fine.

    Thanks again!

  12. #12
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,169

    Re: Getting data from one sheet to a dynamic sheet

    Thanks for giving your final answer. That helps us understand how you resolved it. Too often we never find what finally solved the problem.

  13. #13
    Registered User
    Join Date
    01-03-2011
    Location
    York, NE
    MS-Off Ver
    Excel 2007
    Posts
    10

    Re: Getting data from one sheet to a dynamic sheet

    Oh, no problem; thought I'd let people know in case anyone ever ran into a similar situation.

    I'd edit the thread title as 'Solved', but can't seem to find how to do it. Probably one of those things that's right in front of me. If anyone wants to mark it as solved, that would be cool.

  14. #14
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,169

    Re: Getting data from one sheet to a dynamic sheet

    Edit your first post by clicking the green "Edit" button. Then look at the dropdown Prefix on the title (I think). Then save.

  15. #15
    Registered User
    Join Date
    01-03-2011
    Location
    York, NE
    MS-Off Ver
    Excel 2007
    Posts
    10

    Re: Getting data from one sheet to a dynamic sheet

    Thanks!

    Had to click 'Go Advanced' to find it.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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