+ Reply to Thread
Results 1 to 45 of 45

Athletic Spread Sheet Formulas

  1. #1
    Registered User
    Join Date
    10-24-2023
    Location
    Australia
    MS-Off Ver
    MS365 V2405
    Posts
    54

    Athletic Spread Sheet Formulas

    Thanks in advance.


    I am trying to create a spreadsheet for my Athletics carnival.
    I'm slowly adding functionality but still require a bit of help please.

    I would like to assign points for the place the athlete comes.....
    1ST places gets - 5 points
    2ND place - 4 points
    3RD place gets - 3 points
    4TH place gets - 2 points
    All others get - 1 point
    Attached Files Attached Files

  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
    45,252

    Re: Athletic Spread Sheet Formulas

    If you have updated to 365, then you can use these formulae.


    For place (lowest time):
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    For place (longest distance):
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    For points:
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    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
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2021
    Posts
    6,017

    Re: Athletic Spread Sheet Formulas

    Try this in D7:

    =IF(B7="","",MAX(1,6-RANK(B7,$B$7:$B$31,1)))

  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
    45,252

    Re: Athletic Spread Sheet Formulas

    Just to neaten up my points formula:

    Formula: copy to clipboard
    Please Login or Register  to view this content.

  5. #5
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2021
    Posts
    6,017

    Re: Athletic Spread Sheet Formulas

    For excel 2021, 365:

    =IFERROR(--TEXT(6-RANK(B7:B31,$B$7:$B$31,1),"[>0]0;\1"),"")

  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
    45,252

    Re: Athletic Spread Sheet Formulas

    That is very neat. And for position, a slight edit:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    How would you adjust it for the distance events? Long jump, etc?

  7. #7
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2021
    Posts
    6,017

    Re: Athletic Spread Sheet Formulas

    Quote Originally Posted by TMS View Post

    How would you adjust it for the distance events? Long jump, etc?
    Change 1 to 0 in the argument of the RANK function.

    =IFERROR(--TEXT(6-RANK(K7:K31,$K$7:$K$31,0),"[>0]0;\1"),"")

  8. #8
    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
    45,252

    Re: Athletic Spread Sheet Formulas

    Ah, simple. Should have remembered. Thanks.

  9. #9
    Forum Expert
    Join Date
    01-05-2013
    Location
    Singapore
    MS-Off Ver
    H&B2019
    Posts
    3,173

    Re: Athletic Spread Sheet Formulas

    Another option, try
    C7=IFERROR(RANK(B7,B$7:B$31,1),"")
    D7=IFERROR(LOOKUP(C7,{1,2,3,4,5},{5,4,3,2,1}),"")

  10. #10
    Registered User
    Join Date
    10-24-2023
    Location
    Australia
    MS-Off Ver
    MS365 V2405
    Posts
    54

    Re: Athletic Spread Sheet Formulas

    Thanks so much for everyone's help.
    Is it too cheeky to ask if someone could edit the spreadsheet and upload it?
    Unfortunately most of what has been suggested is above my head.....

  11. #11
    Forum Expert
    Join Date
    01-05-2013
    Location
    Singapore
    MS-Off Ver
    H&B2019
    Posts
    3,173

    Re: Athletic Spread Sheet Formulas

    Here is the file.
    Attached Files Attached Files

  12. #12
    Registered User
    Join Date
    10-24-2023
    Location
    Australia
    MS-Off Ver
    MS365 V2405
    Posts
    54

    Re: Athletic Spread Sheet Formulas

    Thanks so much.
    A while ago someone setup the first 2 events to highlight if the record was broken.
    I have no idea how they've done that......is it possible to do that for all the events.

    If the event record is beaten, row 2 for each event, then the athletes is highlighted.
    but if we could also colour code the current record with the highlight colour to make it easy to see??

    Thank you heaps once again

  13. #13
    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
    45,252

    Re: Athletic Spread Sheet Formulas

    You're welcome. Thanks for the rep.

  14. #14
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    If that takes care of your original question, please choose Thread Tools from the menu link above and mark this thread as SOLVED. You can also access the SOLVED tag by editing the opening post and choosing SOLVED from the drop-down to the left of the title box.
    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.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  15. #15
    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
    45,252

    Re: Athletic Spread Sheet Formulas

    If the event record is beaten, row 2 for each event, then the athletes is highlighted.
    but if we could also colour code the current record with the highlight colour to make it easy to see??

    You would use Conditional Formatting. For example, select $B$7:$D$31 and use the formula
    Formula: copy to clipboard
    Please Login or Register  to view this content.

  16. #16
    Registered User
    Join Date
    05-22-2024
    Location
    Australia
    MS-Off Ver
    Current version
    Posts
    3

    Re: Athletic Spread Sheet Formulas

    If I wanted to produce a similar file, but the 100m needed to be broken up into heats, and points were allocated based on the heat results (we would then run a separate final), what would I need to do? I'm a rookie user, but keen to make things a bit easier on carnival day. Many thanks.

  17. #17
    Registered User
    Join Date
    05-22-2024
    Location
    Australia
    MS-Off Ver
    Current version
    Posts
    3

    Re: Athletic Spread Sheet Formulas

    Quote Originally Posted by josephteh View Post
    Here is the file.
    If I wanted to produce a similar file, but the 100m needed to be broken up into heats, and points were allocated based on the heat results (we would then run a separate final), what would I need to do? I'm a rookie user, but keen to make things a bit easier on carnival day. Many thanks.

  18. #18
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    Administrative Note:

    Welcome to the forum.

    We are happy to help, however whilst you feel your request is similar or even the same as this thread, we have a rule that you open your own thread on the issue and do not piggy back another member's thread.

    Please see Forum Rule #1 about hijacking and start a new thread for your query.

    If you are not familiar with how to start a new thread see the FAQ: How to start a new thread

  19. #19
    Registered User
    Join Date
    10-24-2023
    Location
    Australia
    MS-Off Ver
    MS365 V2405
    Posts
    54

    Re: Athletic Spread Sheet Formulas

    Hey again,
    Is it possible for you to adjust the spreadsheet and re-upload please?
    I've tried adding that formula but must be doing something wrong.

    Thanks once again

  20. #20
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    I added the CF rule to B7 and applied it to $B$7:$D$31. You'd need to adapt it yourself for other ranges. Is this what you wanted?
    Attached Files Attached Files

  21. #21
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    Now that you have seen my suggestion, if that takes care of your original question, please choose Thread Tools from the menu link above and mark this thread as SOLVED. You can also access the SOLVED tag by editing the opening post and choosing SOLVED from the drop-down to the left of the title box.

    Also, if you have not already done so, remember that you can reward anyone who offered you help towards a solution for your issue by clicking the small star icon (* Add Reputation) located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of each of those who offered help.

  22. #22
    Registered User
    Join Date
    10-24-2023
    Location
    Australia
    MS-Off Ver
    MS365 V2405
    Posts
    54

    Re: Athletic Spread Sheet Formulas

    Hi again,
    I can't seem to work it out or perhaps I've not explained it very well.
    It's obviously in the conditional formatting but I can't work it out.
    what I'm trying to do is.......

    The record for 100m is in B-D2
    Phil Fat in A9 beat the record with 13.
    That gets highlighted in orange to indicate the record has been beaten.

    the record for 200m is in E-F2
    Liam Connor in A10 beat that record with 33.
    As such it's highlighted blue.

    Can anybody please update the spreadsheet for the other events
    so that if the record is broken it gets highlighted too please?

    I just can't work out the conditional formatting.

    Thanks so much!

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

    Re: Athletic Spread Sheet Formulas

    It would be much better for you to learn how to do it yourself.

    I will give you the steps for the 100m race, then you need to follow them for the others.

    1. Select cell A7 (the first name on the list).
    2. On the Home ribbon, click Conditional Formatting > Manage Rules.
    3. Click on New Rule > Use a formula ...
    4. Type the rule into the box: =AND($B7<>"",$B7<$B$2)
    5. Choose your formatting > OK.
    6. In the Applies to box, type this: =$A$7:$A$31,$B$7:$D$31
    7. Click OK.

    I have done this in the workbook attached. Now, you follow these instructions to set up the rule for the 200m race:

    1. Select cell A7 (the first name on the list).
    2. On the Home ribbon, click Conditional Formatting > Manage Rules.
    3. Click on New Rule > Use a formula ...
    4. Type the rule into the box: =AND($E7<>"",$E7<$E$2)
    5. Choose your formatting > OK.
    6. In the Applies to box, type this: =$A$7:$A$31,$E$7:$G$31
    7. Click OK.

    I've highlighted the changes you need to make each time you set up a rule. ALWAYS have A7 selected when setting rules. For Coochin you'd select A36 and so on.
    Attached Files Attached Files

  24. #24
    Registered User
    Join Date
    10-24-2023
    Location
    Australia
    MS-Off Ver
    MS365 V2405
    Posts
    54

    Re: Athletic Spread Sheet Formulas

    thanks for that.
    I've attempted it but something is not right! hahahaha
    Also, how do I change the Distance results?
    In the long Jump Column I want the biggest Distance to be first place however the calculations are the wrong way around.

    Also in the conditional formatting to highlight records, is it possible to only highlight the best rather than all results that break the record?
    Phil Fat breaks the record but Frank Gill breaks the record and has the better a result so his is the result to highlight.

    Have I explained that ok??
    Attached Files Attached Files

  25. #25
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    For high jump:

    =AND($E7<>"",$K7>$K$2,$K7=MAX($K$7:$K$31))

  26. #26
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    Try again (just noticed the 'm').

    High jump: =AND($E7<>"",$K7>--SUBSTITUTE($K$2,"m",""),$K7=MAX($K$7:$K$31))

    200m: =AND($E7<>"",$E7<$E$2,$E7=MIN($E$7:$E$31))

    100m: =AND($B7<>"",$B7<$B$2,$B7=MIN($B$7:$B$31))

    You are making progress.
    Attached Files Attached Files
    Last edited by AliGW; 05-28-2024 at 05:29 AM. Reason: Workbook added.

  27. #27
    Registered User
    Join Date
    10-24-2023
    Location
    Australia
    MS-Off Ver
    MS365 V2405
    Posts
    54

    Re: Athletic Spread Sheet Formulas

    Hi again,
    I'm still struggling unfortunately.
    I've added the rules to the bottom teams, Coochin and Coonowrin so that athletes in those teams are calculated into the placings etc.
    BUT I still can't get the rule correct for High jump, long jump, discus and shotput.
    For these events, the highest number is the winner.
    It's like I need to reverse the rules for sprints.......
    I've uploaded my latest attempt

    Thanks in advance
    Attached Files Attached Files

  28. #28
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    It's like I need to reverse the rules for sprints.......
    Well, yes, of course you do!!!

    Track events - lowest time wins.
    Field events - highest distance/height wins.

    There are NO rules in the workbook you have attached, though, so I can't troubleshoot what you are doing wrong.

  29. #29
    Registered User
    Join Date
    10-24-2023
    Location
    Australia
    MS-Off Ver
    MS365 V2405
    Posts
    54

    Re: Athletic Spread Sheet Formulas

    Thanks
    I've got
    =IFERROR(RANK(K7,K$7:K$31,1),"")
    As the rule in L7 trying to determine first place.....

    and =IFERROR(RANK(N7,N$7:N$31,1),"") in O7

    Is this not the correct place to have them?
    I know they're wrong because it's still ordering them from smallest to largest instead of largest to smallest.

    Thanks
    Attached Files Attached Files

  30. #30
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    So you have completely ditched the CF rules I gave you and demostrated to you in the attachment to post #26 - why? Are they no longer needed?

    This is now a question about something else entirely - these are formulae, not CF rules. I am utterly confused!

    But, to answer your question about the formulae to rank players, you need ASCENDING for track events:

    =IFERROR(RANK(B7,B$7:B$89,1),"")

    and DESCENDING for field events:

    =IFERROR(RANK(K7,K$7:K$31,0),"")

  31. #31
    Registered User
    Join Date
    10-24-2023
    Location
    Australia
    MS-Off Ver
    MS365 V2405
    Posts
    54

    Re: Athletic Spread Sheet Formulas

    Thanks for the reply.
    I couldn't get the CF to work for all events and my athletics carnival is next week so I needed to focus on the basics of the worksheet to ensure it was functional on the day.
    The plan is to have that CF as a function of the sheet eventually.

  32. #32
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    OK.

    Glad to have helped.

    If that takes care of your original question, please choose Thread Tools from the menu link above and mark this thread as SOLVED. You can also access the SOLVED tag by editing the opening post and choosing SOLVED from the drop-down to the left of the title box.

    Also, if you have not already done so, remember that you can reward anyone who offered you help towards a solution for your issue by clicking the small star icon (* Add Reputation) located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of each of those who offered help.

  33. #33
    Registered User
    Join Date
    10-24-2023
    Location
    Australia
    MS-Off Ver
    MS365 V2405
    Posts
    54

    Re: Athletic Spread Sheet Formulas

    Thanks again.
    I think I have it pretty much sorted now.
    Are you able to have a quick check of this version and see if you can suggest any improvements?
    Also, I'm reattempting the CF for the records.
    I've done the first event BUT is there a way to only highlight the best result? not all of the results that break the record?

    And are you able to show me the CF for high jump as it's reversed for the sprint events.

    Thanks so much
    Attached Files Attached Files

  34. #34
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    My formulae in post #26 do what you want. You haven't used them, which is why it's not working.

    Look at the attachment I provided in post #26. I am not going to do it all again - sorry.
    Last edited by AliGW; 06-13-2024 at 07:42 AM.

  35. #35
    Registered User
    Join Date
    10-24-2023
    Location
    Australia
    MS-Off Ver
    MS365 V2405
    Posts
    54

    Athletic Spread Sheet Formulas

    I am creating an Athletics Spreadsheet and would like some help with conditional formatting.
    Each event has a 'Record' and I have done the CF (I think) so that if a record is broken, the new record is highlighted and so is the athletes name.
    I have the current record already highlighted in the correct colour HOWEVER, wondering if there is a way to have the current record with no highlight UNTIL it is broken??

    Would love some help if I've explained this correctly.
    Thanks in advance
    Attached Files Attached Files

  36. #36
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    In what way is it NOT workning? The new record can't highlight until it is broken.

    For example, the 100m rule:

    =AND($B7<>"",$B7<$B$2,$B7=MIN($B$7:$B$89))

    B7 has to:

    1. NOT be empty.
    2. Be LESS than the current record.
    3. Be the lowest value in the range.

    So it cannot highlight if any of those three rules are untrue.

  37. #37
    Registered User
    Join Date
    10-24-2023
    Location
    Australia
    MS-Off Ver
    MS365 V2405
    Posts
    54

    Re: Athletic Spread Sheet Formulas

    I'm talking about the current record in B2.
    I currently have that 'filled' in the blue colour.
    I was wondering if there is a way to have B2 only 'filled' or highlighted if the record is broken.
    'Terry' in A7 is highlighted when the record is broken, is there a way to have B2 highlighted at the same time?

    Thanks in advance

  38. #38
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    Oh, I see!!! Gotcha - give me a mo.

  39. #39
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    OK - rule for B2:

    =COUNTIF($B$7:$B$89,"<"&$B$2)>0

    Applies to: $B$2

    Example for field events:

    =COUNTIF($B$7:$B$89,">"&$B$2)>0
    Attached Files Attached Files

  40. #40
    Registered User
    Join Date
    10-24-2023
    Location
    Australia
    MS-Off Ver
    MS365 V2405
    Posts
    54

    Re: Athletic Spread Sheet Formulas

    Morning,
    I think I have the field event formula as you have it BUT I can't get it to work.
    Looking at H2.......
    There are no records broken as nothing is above 1.04 BUT H2 is still highlighted....

    Thanks again
    Attached Files Attached Files

  41. #41
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    Use this rule for field events:

    =SUMPRODUCT(($K$7:$K$89>--SUBSTITUTE($K$2,"m",""))*(ISNUMBER($K$7:$K$89)))>0

    The problems are:

    1. The "m" in the value in K2 which turns it into text (I covered this in the other rule earlier in the thread).
    2. Text in the column is counted as bigger than 0, so you need to exclude it.

    If that takes care of your original question, please choose Thread Tools from the menu link above and mark this thread as SOLVED. You can also access the SOLVED tag by editing the opening post and choosing SOLVED from the drop-down to the left of the title box.

    Also, if you have not already done so, remember that you can reward anyone who offered you help towards a solution for your issue by clicking the small star icon (* Add Reputation) located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of each of those who offered help.

  42. #42
    Registered User
    Join Date
    10-24-2023
    Location
    Australia
    MS-Off Ver
    MS365 V2405
    Posts
    54

    Re: Athletic Spread Sheet Formulas

    Thanks
    Using that formula doesn't work unfortunately.
    BUT if I get rid of the 'm' in the records does that change things?

    Also, are you able to tell me why K36 breaks the record but doesn't highlight?
    That's happening in a few other instances.......N85 for example...


    Thanks once again
    Attached Files Attached Files

  43. #43
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    It does work - I tested it. I'll see what you've done.

  44. #44
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    Read point 2 of my earlier post.

  45. #45
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,542

    Re: Athletic Spread Sheet Formulas

    If you get rid of the 'm' in the Records sheet, use this rule:

    =SUMPRODUCT(($K$7:$K$89>$K$2)*(ISNUMBER($K$7:$K$89)))>0

    Then change the other rule to this:

    =AND($K7<>"",$K7>$K$2,$K7=MAX($K$7:$K$89))

    i.e.remove the SUBSTITUTE clause and change E7 at the start to K7.

    I think you have more than enough now to be able to complete the remainder of the field events, but you do need to check your rules very carefully and make sure that they are referencing the correct cells in each case.

    If that takes care of your original question, please choose Thread Tools from the menu link above and mark this thread as SOLVED. You can also access the SOLVED tag by editing the opening post and choosing SOLVED from the drop-down to the left of the title box.

    Also, if you have not already done so, remember that you can reward anyone who offered you help towards a solution for your issue by clicking the small star icon (* Add Reputation) located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of each of those who offered help.
    Attached Files Attached Files

+ 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. Looking for an efficient way to paste 100's of VBA formulas into a spread sheet.
    By JeffGrant in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 02-22-2021, 06:07 AM
  2. Replies: 2
    Last Post: 04-25-2019, 07:18 AM
  3. Excel formulas don't work on spread sheet...
    By Hussain Anees in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-01-2015, 01:27 AM
  4. Replies: 0
    Last Post: 01-19-2015, 03:31 PM
  5. The removal of formulas from a spread sheet
    By martinc182 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 11-03-2014, 12:20 PM
  6. Spread Sheet Formulas and Drop Down
    By sabreclaw in forum Excel General
    Replies: 34
    Last Post: 05-29-2008, 11:22 AM
  7. [SOLVED] How can i keep formulas in a spread sheet when it is saved over?
    By saveas getting rid of formulas in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 01-17-2006, 04:50 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