+ Reply to Thread
Results 1 to 7 of 7

Extract login and logut data from one worksheet to another

Hybrid View

  1. #1
    Registered User
    Join Date
    01-02-2012
    Location
    Georgia
    MS-Off Ver
    Excel
    Posts
    36

    Exclamation Extract login and logut data from one worksheet to another

    Hello,

    I am trying to create a report that will allow me to extract login and logout data from the Rawdata sheet in excel to my Summary sheet. The concept that I am trying to achieve is to have a summary page that will allow me to select an employee from a dropdown list and once that employee is chosen, their login times will be listed by date. Currently, my summary page auto-populates the date so the only information that needs to be retrieved is the login information based off the employee name and date. I am very new to excel and have tried several different ways to achieve this concept but have been unsuccessful. Any assistance as to what I am doing wrong and/or what formulas would be best to use would be greatly appreciate. Please Help, I have been racking my brain trying to figure this out
    index.xlsx
    Last edited by nmckever; 01-04-2012 at 01:06 AM.

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,304

    Re: Extract login and logut data from one worksheet to another

    C9: =INDEX(Rawdata!D$3:D$82,MATCH($B9&$C$3,Rawdata!$A$3:$A$82&Rawdata!$B$3:$B$82,0))

    committed with Ctrl-Shift-Enter rather than just Enter.

    Copy to column D and then down.


    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Registered User
    Join Date
    01-02-2012
    Location
    Georgia
    MS-Off Ver
    Excel
    Posts
    36

    Re: Extract login and logut data from one worksheet to another

    Thank so much, this really helped me out!

  4. #4
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,304

    Re: Extract login and logut data from one worksheet to another

    As you're using Excel 2010, you can "tidy it up" a little with IFERROR:

    =IFERROR(INDEX(Rawdata!D$3:D$82,MATCH($B9&$C$3,Rawdata!$A$3:$A$82&Rawdata!$B$3:$B$82,0)),"")

    committed with Ctrl-Shift-Enter rather than just Enter.

    Copy to column D and then down.


    Regards, TMS

  5. #5
    Registered User
    Join Date
    01-02-2012
    Location
    Georgia
    MS-Off Ver
    Excel
    Posts
    36

    Re: Extract login and logut data from one worksheet to another

    Will the last formula you provided clear up any of the n/a in the fields that don't have any value?

  6. #6
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,304

    Re: Extract login and logut data from one worksheet to another

    You're welcome. Thanks for the rep.


    If you are satisfied with the solution(s) provided, please mark your thread as Solved.

    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save

  7. #7
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,304

    Re: Extract login and logut data from one worksheet to another

    You might have to check for that separately.

    =IF(OR($B9="",$C$3=""),"",IFERROR(INDEX(Rawdata!D$3:D$82,MATCH($B9&$C$3,Rawdata!$A$3:$A$82&Rawdata!$B$3:$B$82,0)),""))

    committed with Ctrl-Shift-Enter rather than just Enter.

    Copy to column D and then down.


    Regards, TMS

+ 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