+ Reply to Thread
Results 1 to 17 of 17

Find out the date when the next match is played from a list

  1. #1
    Registered User
    Join Date
    09-28-2022
    Location
    Perth
    MS-Off Ver
    O365
    Posts
    29

    Post Find out the date when the next match is played from a list

    HI

    I got a list of 60 cricket matches played in a season.(attached)
    Total of 8 teams played all these matches.

    Column L shows the teams that have lost (only 19 team matches) based on my own criteria.

    I need to find out the dates for when these 19 teams played their next game, either as home or away team?

    I have manually entered the dates , the expected results in column M.

    Could someone please formulate to find the dates for next match played?

    Thank you

  2. #2
    Forum Guru HansDouwe's Avatar
    Join Date
    06-21-2022
    Location
    Nederland
    MS-Off Ver
    365 V2403 (Build 17330.20000)
    Posts
    6,427

    Re: Find out the date when the next match is played from a list

    Welcome to this forum.

    There is nothing attached.
    At the top of the page in the yellow banner are instructions on how to attach a workbook.
    Would you like to try again?
    Last edited by HansDouwe; 09-28-2022 at 11:53 PM. Reason: instruction extended

  3. #3
    Registered User
    Join Date
    09-28-2022
    Location
    Perth
    MS-Off Ver
    O365
    Posts
    29

    Re: Find out the date when the next match is played from a list

    attached now. Thank you for looking

  4. #4
    Forum Guru HansDouwe's Avatar
    Join Date
    06-21-2022
    Location
    Nederland
    MS-Off Ver
    365 V2403 (Build 17330.20000)
    Posts
    6,427

    Re: Find out the date when the next match is played from a list

    Something is still going wrong somewhere. I don't see your workbook.

    At the top of the page in the yellow banner are instructions on how to attach a workbook.
    Would you like to try again?

  5. #5
    Registered User
    Join Date
    09-28-2022
    Location
    Perth
    MS-Off Ver
    O365
    Posts
    29

    Re: Find out the date when the next match is played from a list

    Attached to this reply now mate.
    Attached Files Attached Files

  6. #6
    Forum Expert Crooza's Avatar
    Join Date
    10-19-2013
    Location
    Hunter Valley, Australia
    MS-Off Ver
    Excel 2003 /7/10
    Posts
    2,082

    Re: Find out the date when the next match is played from a list

    Try this in M4 and drag down
    Please Login or Register  to view this content.
    Last edited by Crooza; 09-29-2022 at 04:45 AM.
    Happy with my advice? Click on the * reputation button below

  7. #7
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2016
    Posts
    5,910

    Re: Find out the date when the next match is played from a list

    Or try

    =IF(L2="","",INDEX(A3:$A$60,MATCH("*"&L2&"*",B3:$B$60&"|"&C3:$C$60,0)))

  8. #8
    Registered User
    Join Date
    09-28-2022
    Location
    Perth
    MS-Off Ver
    O365
    Posts
    29

    Re: Find out the date when the next match is played from a list

    it's all working now.
    Excellent. Thank you
    Last edited by idealist87; 09-29-2022 at 12:41 AM.

  9. #9
    Registered User
    Join Date
    09-28-2022
    Location
    Perth
    MS-Off Ver
    O365
    Posts
    29

    Re: Find out the date when the next match is played from a list

    both the formulas are working..GREAT

  10. #10
    Forum Guru HansDouwe's Avatar
    Join Date
    06-21-2022
    Location
    Nederland
    MS-Off Ver
    365 V2403 (Build 17330.20000)
    Posts
    6,427

    Re: Find out the date when the next match is played from a list

    An other option:
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Attached Files Attached Files
    Last edited by HansDouwe; 09-29-2022 at 01:04 AM.

  11. #11
    Forum Guru HansDouwe's Avatar
    Join Date
    06-21-2022
    Location
    Nederland
    MS-Off Ver
    365 V2403 (Build 17330.20000)
    Posts
    6,427

    Re: Find out the date when the next match is played from a list

    =IF(L2="","",INDEX(A3:$A$60,MATCH("*"&L2&"*",B3:$B$60&"|"&C3:$C$60,0)))
    Nice short formula. But beware if there are teams participating where one name appears in the other name,
    for example "Brisbane Heat" and "Brisbane Heat Juniors".
    If such things happen, this formula is not suitable.

  12. #12
    Forum Expert bebo021999's Avatar
    Join Date
    07-22-2011
    Location
    Vietnam
    MS-Off Ver
    Excel 2016
    Posts
    9,466

    Re: Find out the date when the next match is played from a list

    Formula in #6 put in M58, and #7 put in M2
    Both work for me.
    Quang PT

  13. #13
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2016
    Posts
    5,910

    Re: Find out the date when the next match is played from a list

    Quote Originally Posted by HansDouwe View Post
    for example "Brisbane Heat" and "Brisbane Heat Juniors".
    If such things happen, this formula is not suitable.
    One way

    =IF(L2="","",INDEX(A3:$A$60,MATCH(1,(L2=B3:$B$60)+(L2=C3:$C$60),0)))

  14. #14
    Forum Guru HansDouwe's Avatar
    Join Date
    06-21-2022
    Location
    Nederland
    MS-Off Ver
    365 V2403 (Build 17330.20000)
    Posts
    6,427

    Re: Find out the date when the next match is played from a list

    Yes, this will work!

  15. #15
    Registered User
    Join Date
    09-28-2022
    Location
    Perth
    MS-Off Ver
    O365
    Posts
    29

    Re: Find out the date when the next match is played from a list

    hi

    Basically the file attached is a continuation of previous file attached.

    What is the formula to find the date for 2nd game played?

    Cheers
    Attached Files Attached Files

  16. #16
    Forum Expert bebo021999's Avatar
    Join Date
    07-22-2011
    Location
    Vietnam
    MS-Off Ver
    Excel 2016
    Posts
    9,466

    Re: Find out the date when the next match is played from a list

    Use this in M2, copy down and accros to column N, for both next 1st and 2nd match

    Please Login or Register  to view this content.
    P/S: drag to right columns for 2nd,3rd, n next game.

  17. #17
    Forum Expert shukla.ankur281190's Avatar
    Join Date
    05-17-2014
    Location
    Lucknow, India
    MS-Off Ver
    Office 365
    Posts
    3,935

    Re: Find out the date when the next match is played from a list

    Quote Originally Posted by HansDouwe View Post
    Nice short formula. But beware if there are teams participating where one name appears in the other name,
    for example "Brisbane Heat" and "Brisbane Heat Juniors".
    If such things happen, this formula is not suitable.
    Then bro why don't we use search ?

    How about this

    Formula: copy to clipboard
    Please Login or Register  to view this content.
    If I helped, Don't forget to add reputation (click on the little star ★ at bottom of this post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)

+ 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. Find if a date has a match in a list of dates
    By Irdanwen in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 07-17-2019, 04:56 AM
  2. [SOLVED] To find out total matches played
    By yiyi2 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 06-20-2018, 12:00 AM
  3. Lookup Given Date in Cell A1 to date list in Cell E:E and find closest match
    By Branbran10 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-02-2015, 03:26 PM
  4. Help sorting DJ playlists to find most played songs please.
    By samteacher1 in forum Excel General
    Replies: 3
    Last Post: 01-08-2014, 11:10 AM
  5. [SOLVED] Calculate how many minutes player played in sports match
    By tlacloche in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 09-14-2013, 05:26 AM
  6. How can i find team name from above and see if they have played in last 24h
    By Ipinho100 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 05-08-2013, 04:56 PM
  7. Using Match and DateSerial to find matching date in list
    By Cutter in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 09-16-2010, 11:47 AM

Tags for this Thread

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