+ Reply to Thread
Results 1 to 5 of 5

Using an ISBLANK, INDEX and MATCH functions for a progressive AFL finals table

  1. #1
    Registered User
    Join Date
    07-01-2010
    Location
    Australia
    MS-Off Ver
    Excel 2013
    Posts
    44

    Using an ISBLANK, INDEX and MATCH functions for a progressive AFL finals table

    Hi,

    i am trying to create an AFL finals table now we know which 8 teams made the finals in order of who finished on top to who finished 8th, how it works is as the results come in and we know who won and who lost i enter an L for who lost and a W for who won next to the team in the yellow box.

    I want to use the ISBLANK function so before I enter an L or a W the yellow boxes the blue boxes where the teams will automatically appear are all blank, once I put an L or W in the yellow boxes the blue boxes will update with the team that won or lost depending on the MATCH function.

    I hope this makes sense.

    I have attached a spreadsheet for you to see what I'm trying to do, I've put a formula in F8 with the result being FALSE as I put a scenario in cell E6 as L, the result should have been Port Power.

    I hope someone can help

    Cheers Mtommo
    Attached Files Attached Files

  2. #2
    Forum Contributor JulianS96's Avatar
    Join Date
    11-01-2019
    Location
    England
    MS-Off Ver
    365 (work-99%), 2016 (home-1%)
    Posts
    266

    Re: Using an ISBLANK, INDEX and MATCH functions for a progressive AFL finals table

    Is this what you were trying to do in cell F8?
    Formula: copy to clipboard
    Please Login or Register  to view this content.

  3. #3
    Forum Expert
    Join Date
    10-10-2016
    Location
    Sheffield
    MS-Off Ver
    365 and rarely 2016
    Posts
    3,212

    Re: Using an ISBLANK, INDEX and MATCH functions for a progressive AFL finals table

    Isblank is also looking at 2 cells which is problematic

    perhaps
    =IF(AND(ISBLANK(E6),ISBLANK(E7)),"",INDEX(D6:D7,MATCH(E3,E6:E7,0)))

    or
    =IF(AND(ISBLANK(E6),ISBLANK(E7)),"",INDEX(D6:D7,MATCH(E3,E6:E7,0)))

    but whynot
    =IF(E6="w",D6,IF(E6="L",D7,IF(E7="W",D7,IF(E7="l",D6,""))))

    or put the score in e6 and e7
    =if(and(e6<>"",e7<>""),if(e6>e7,d6,d7),"")
    Last edited by davsth; 09-29-2020 at 10:37 AM.

  4. #4
    Forum Expert Bob Phillips's Avatar
    Join Date
    09-03-2005
    Location
    Wessex
    MS-Off Ver
    Office 2003, 2010, 2013, 2016, 365
    Posts
    3,284

    Re: Using an ISBLANK, INDEX and MATCH functions for a progressive AFL finals table

    An alternative

    =IFERROR(INDEX(D6:D7,MATCH("W",E6:E7,0)),"")

  5. #5
    Registered User
    Join Date
    07-01-2010
    Location
    Australia
    MS-Off Ver
    Excel 2013
    Posts
    44

    Re: Using an ISBLANK, INDEX and MATCH functions for a progressive AFL finals table

    Thanks guys for your quick response, they all worked fine, again thanks to JulianS96, Davsth and Bob Philips

    cheers
    M-Tommo

+ 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. [SOLVED] Use Index Match with an ISBLANK?
    By triggfamily5 in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 11-07-2020, 08:43 AM
  2. Index Match & Isblank
    By joeocall123 in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 03-26-2019, 01:30 PM
  3. Problem with index, match and isblank
    By skaffapingvin in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 01-30-2018, 08:44 AM
  4. Replies: 14
    Last Post: 04-09-2015, 12:43 PM
  5. Index and Match functions to select a price from a table
    By yasashiikuma in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 01-27-2014, 10:11 AM
  6. Index/Match functions used with a pivot table
    By razkowski in forum Excel General
    Replies: 1
    Last Post: 07-12-2012, 06:22 PM

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