+ Reply to Thread
Results 1 to 10 of 10

automatically fill cells because other cells have been filled - SEE OPENING POST

  1. #1
    Forum Contributor
    Join Date
    03-20-2013
    Location
    London, England
    MS-Off Ver
    Excel 2011
    Posts
    474

    automatically fill cells because other cells have been filled - SEE OPENING POST

    Hello,

    the title description is terrible, sorry.
    ive attached my excel doc so you can see exactly what i mean.

    okay here's the deal:
    on the 'individual player raw data' sheet i input everything manually.
    i would then like column A on the 'Team Data' sheet to automatically recognise that a NEW date has been entered on column B on the 'individual player raw data sheet'.
    so instead of manually inputting the different dates in column A on the 'Team Data' sheet (as it is currently), i would like it to happen automatically?

    thank you
    Attached Files Attached Files

  2. #2
    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,929

    Re: automatically fill cells because other cells have been filled - SEE OPENING POST

    tallag how is this thread any different from this 1?

    http://www.excelforum.com/excel-form...xt-values.html

    If it is different, please explain how...if not, please dont post duplicate threads, continue on your other 1
    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

  3. #3
    Forum Contributor
    Join Date
    03-20-2013
    Location
    London, England
    MS-Off Ver
    Excel 2011
    Posts
    474

    Re: automatically fill cells because other cells have been filled - SEE OPENING POST

    Quote Originally Posted by FDibbins View Post
    tallag how is this thread any different from this 1?

    http://www.excelforum.com/excel-form...xt-values.html

    If it is different, please explain how...if not, please dont post duplicate threads, continue on your other 1
    it is different.
    im currently asking for a formula that recognises a new date being imputed in column A of the 'individual player raw data' sheet.
    my previous question was asking for a way to calculate the most common text in column g in the 'individual player raw data sheet' WITHIN each date.

    im not very good with excel so to me they seem like 2 different things. maybe to you theyre very similar.
    i dont know how to do it. if you could please help, id be hugely grateful.

    thanks.

  4. #4
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: automatically fill cells because other cells have been filled - SEE OPENING POST

    In A3
    =MIN('Individual Player Raw Data'!$B$3:$B$250)
    In A4, entered as an array formula (use CONTRL SHFT ENTER instead of ENTER. If done correctly, you'll see {} around your formula)
    =IFERROR(SMALL(IF('Individual Player Raw Data'!$B$3:$B$250>A3,'Individual Player Raw Data'!$B$3:$B$250),1),"")
    Does that work for you?
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  5. #5
    Forum Contributor
    Join Date
    03-20-2013
    Location
    London, England
    MS-Off Ver
    Excel 2011
    Posts
    474

    Re: automatically fill cells because other cells have been filled - SEE OPENING POST

    Quote Originally Posted by ChemistB View Post
    In A3
    =MIN('Individual Player Raw Data'!$B$3:$B$250)
    In A4, entered as an array formula (use CONTRL SHFT ENTER instead of ENTER. If done correctly, you'll see {} around your formula)
    =IFERROR(SMALL(IF('Individual Player Raw Data'!$B$3:$B$250>A3,'Individual Player Raw Data'!$B$3:$B$250),1),"")
    Does that work for you?
    so i drag down from A4 (not A3) to have the rest of the column to pick up new dates as they are inputed on the first sheet?

  6. #6
    Forum Contributor
    Join Date
    03-20-2013
    Location
    London, England
    MS-Off Ver
    Excel 2011
    Posts
    474

    Re: automatically fill cells because other cells have been filled - SEE OPENING POST

    it works perfectly.
    chemistb, you are the man!!!

  7. #7
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: automatically fill cells because other cells have been filled - SEE OPENING POST

    Glad it's working. Thanks Tallag

  8. #8
    Forum Contributor
    Join Date
    03-20-2013
    Location
    London, England
    MS-Off Ver
    Excel 2011
    Posts
    474

    Re: automatically fill cells because other cells have been filled - SEE OPENING POST

    Hello,
    slight change of plan.....

    instead of automatically filling the dates like originally asked, is it possible to fill the dates that are on the same row as a particular cell value.
    for example:

    12/04/2014 Player1
    22/04/2014 Player1
    22/04/2014 Player2
    30/04/2014 Player3
    06/05/2014 Player2

    so on my player 1 sheet i will have the dates 12/04/2014 and 22/04/2014 listed.
    on the my player 2 sheet ill have 22/04/2014 and 06/05/2014 listed
    on my player 3 sheet ill have 30/04/2014

    thank you
    Last edited by tlacloche; 04-02-2013 at 08:16 AM.

  9. #9
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: automatically fill cells because other cells have been filled - SEE OPENING POST

    There might be (probably LOL) an easier way to do this.
    I put the name in E1
    In A2, enter as an array
    =MIN(IF('Individual Player Raw Data'!$A$3:$A$25=$E$1,('Individual Player Raw Data'!$B$3:$B$25),""))

    In A4, entered as an array
    =IFERROR(SMALL(IF(('Individual Player Raw Data'!$B$3:$B$25>A3)*( 'Individual Player Raw Data'!$A$3:$A$25=$E$1),'Individual Player Raw Data'!$B$3:$B$25),1),"")
    See attachment
    Does that work for you?
    Attached Files Attached Files

  10. #10
    Forum Contributor
    Join Date
    03-20-2013
    Location
    London, England
    MS-Off Ver
    Excel 2011
    Posts
    474

    Re: automatically fill cells because other cells have been filled - SEE OPENING POST

    He's done it again.
    You never fail to impress!!!!!!!!!!!!!

    Thank you chemistb

+ 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