+ Reply to Thread
Results 1 to 11 of 11

Help importing specific data from one sheet to another in the same workbook

  1. #1
    Registered User
    Join Date
    03-11-2018
    Location
    Virginia, USA
    MS-Off Ver
    2016 for Mac
    Posts
    6

    Help importing specific data from one sheet to another in the same workbook

    Hello all,

    I play fantasy sports and I have created a spreadsheet that calculates projections. I have a master workbook that I start with every day. For example, for basketball, I have a sheet that has every player listed with all their relevant data. I further break this data down into separate sheets based on position. My 5 separate sheets are PG, SG, SF, PF, and C. How can I automatically pull each player from the first sheet, to their respective sheets based on whether they are a PG, SG, SF ,PF or C? Right now I am sorting and then copying and pasting. I would like to automate this. All I am looking for is their name. I can get it done with vlookup, but its messy and I have a bunch of 0's. Is there a way to pull just the PG's into one sheet and so forth? Sorry if I am rambling. This is my first post to this forum and I am looking forward to hearing from the experts. So far I am self-taught. Thanks

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,569

    Re: Help importing specific data from one sheet to another in the same workbook

    Welcome to the forum!

    Will you please attach a sample Excel workbook? We are not able to work with or manipulate a picture of one and nobody wants to have to recreate your data from scratch.

    1. Make sure that your sample data are REPRESENTATIVE of your real data. The use of unrepresentative data is very frustrating and can lead to long delays in reaching a solution.

    2. Make sure that your desired results are also shown (mock up the results manually).

    3. Make sure that all confidential data is removed or replaced with dummy data first (e.g. names, addresses, E-mails, etc.).

    4. Try to avoid using merged cells as they cause lots of problems.

    Unfortunately the attachment icon doesn't work at the moment, so to attach an Excel file you have to do the following: just before posting, scroll down to Go Advanced and then scroll down to Manage Attachments. Now follow the instructions at the top of that screen.

    Please pay particular attention to point 2 (above): without an idea of your intended outcomes, it is often very difficult to offer appropriate advice.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

  3. #3
    Registered User
    Join Date
    03-11-2018
    Location
    Virginia, USA
    MS-Off Ver
    2016 for Mac
    Posts
    6

    Re: Help importing specific data from one sheet to another in the same workbook

    Ok, I think I figured out how to attach so here goes.
    Attached Files Attached Files

  4. #4
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,569

    Re: Help importing specific data from one sheet to another in the same workbook

    I don't think you read my instructions fully. Please see point 2 above (in bold).

  5. #5
    Registered User
    Join Date
    03-11-2018
    Location
    Virginia, USA
    MS-Off Ver
    2016 for Mac
    Posts
    6

    Re: Help importing specific data from one sheet to another in the same workbook

    Yes, i just saw that. Sorry. Correcting now.

  6. #6
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,569

    Re: Help importing specific data from one sheet to another in the same workbook

    Just a few lines to give us an idea will do.

  7. #7
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,791

    Re: Help importing specific data from one sheet to another in the same workbook

    In A2 of "PG"

    =IFERROR(INDEX(Everybody!A$2:A$1000,SMALL(IF(Everybody!$C$2:$C$1000="PG",ROW(Everybody!$A$2:$A$1000)-ROW($A$2)+1,""),ROWS($A$2:A2))),"")

    ...confirmed by pressing CTRL+SHIFT+ENTER to activate the array, not just ENTER. You will know the array is active when you see curly braces { } appear around your formula. If you do not CTRL+SHIFT+ENTER you will get an error or a clearly incorrect answer.

    Then copy across to B (and C) and down

    For other sheets change "PG"

  8. #8
    Registered User
    Join Date
    03-11-2018
    Location
    Virginia, USA
    MS-Off Ver
    2016 for Mac
    Posts
    6

    Re: Help importing specific data from one sheet to another in the same workbook

    Ok, so here is the sheet with the desired outcome.
    Attached Files Attached Files

  9. #9
    Registered User
    Join Date
    03-11-2018
    Location
    Virginia, USA
    MS-Off Ver
    2016 for Mac
    Posts
    6

    Re: Help importing specific data from one sheet to another in the same workbook

    Quote Originally Posted by JohnTopley View Post
    In A2 of "PG"

    =IFERROR(INDEX(Everybody!A$2:A$1000,SMALL(IF(Everybody!$C$2:$C$1000="PG",ROW(Everybody!$A$2:$A$1000)-ROW($A$2)+1,""),ROWS($A$2:A2))),"")

    ...confirmed by pressing CTRL+SHIFT+ENTER to activate the array, not just ENTER. You will know the array is active when you see curly braces { } appear around your formula. If you do not CTRL+SHIFT+ENTER you will get an error or a clearly incorrect answer.

    Then copy across to B (and C) and down

    For other sheets change "PG"
    That's Fantastic. I thought it had something to do with the index function, I just couldn't figure it out. Thanks for the help. You are awesome.

  10. #10
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,569

    Re: Help importing specific data from one sheet to another in the same workbook

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.

  11. #11
    Registered User
    Join Date
    03-11-2018
    Location
    Virginia, USA
    MS-Off Ver
    2016 for Mac
    Posts
    6

    Re: Help importing specific data from one sheet to another in the same workbook

    Quote Originally Posted by AliGW View Post
    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.
    Done. I was looking for how to do this earlier.

+ 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. Copy data from one workbook to a specific sheet in another workbook without overriding
    By cdhampshire in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-01-2017, 01:06 PM
  2. [SOLVED] Importing specific data from one workbook to another
    By VBANoob_Mazura in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-23-2017, 01:00 AM
  3. importing specific event log data into workbook
    By junksasa in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-10-2015, 01:44 AM
  4. Replies: 3
    Last Post: 02-21-2014, 09:05 AM
  5. Replies: 1
    Last Post: 06-09-2013, 08:47 PM
  6. Having trouble importing a sheet of data from a closed workbook into a New Sheet.
    By Mr Cham in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 10-26-2010, 04:31 AM
  7. Importing data from a specific workbook
    By toocold in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 04-23-2007, 10:41 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