New field auto entry

sam1

New Member
Joined
Mar 10, 2009
Messages
4
How do I acomplish the following in Excel? I have a game bracket whereby Team 1 plays Team 2. The score is Team 1 (88) Team 2 (66). I want the winner to automatically proceed to the next game in the schedule without me having to type in the team name.

The bracket is drawn in Excel. In the above example A1 = Team 1 and A5 = Team 2 with the winner moving to cell C4
 
Last edited:

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Hello sam1, welcome to the board.
Assuming you have Team 1 in A1, Team 2 in A5, and 88 In B1 and 66 in B5, and you want to display the winning team's name in C4, then this formula in C4 should work.
Code:
=INDEX(A1:A5,MATCH(MAX(B1:B5),B1:B5,0),1)
Does that help?
 
Upvote 0
Given that forumla above allows the winner of the game to move forward; what would the forumla look like that would move the loser somewhere else.

Sam set up as my original question.

Thanks, in advance.
 
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,428
Members
449,083
Latest member
Ava19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top