Fantasy Baseball Question in Excel

tommade

New Member
Joined
Feb 18, 2016
Messages
14
I am using excel to take projections for my upcoming fantasy baseball draft. I will use this to draft my team. My main question is
1) can how can I remove players who have been drafted so my file no longer counts them as a future available pick?

And 2) is there a way to post player names (or at least my projected points) for the next 3 players (Undrafted) at each available Position? The idea here would be to for the cell to update following every drafted player.

Would anyone be able to please explain to me how this can be done?
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
I am using excel to take projections for my upcoming fantasy baseball draft. I will use this to draft my team. My main question is
1) can how can I remove players who have been drafted so my file no longer counts them as a future available pick?

And 2) is there a way to post player names (or at least my projected points) for the next 3 players (Undrafted) at each available Position? The idea here would be to for the cell to update following every drafted player.

Would anyone be able to please explain to me how this can be done?

I set up a Four column data set

column A is player name
column B is Position
Column C is Weight (or draft score)
Column D is Drafted/Undrafted

Below my data set I set my three row table to show the top three players for a given position.

So that small table is

Column A Player name
Column B is position
And column C is Weight or draft score

In column A I have the following formula

Code:
=INDEX($A$1:$A$37,MATCH(1,($B41=$B$1:$B$37)*($C41=$C$1:$C$37),0))

****** the above formula is an ARRAY FORMULA and must be set with CTRL+ALT+ENTER




Column B is a data validation list in the first cell (and the two rows below equal the first row) which you select the position

column C has the following formula which will select the three top weighted players that remain undrafted.

Code:
=MAX(LARGE(IF($B$1:$B$37=$B41,IF($D$1:$D$37="Undrafted",$C$1:$C$37)),ROW(1:1)))

****** the above formula is an ARRAY FORMULA and must be set with CTRL+ALT+ENTER

Remember to change the range references to the proper columns/ranges of your data.

Thanks,
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,235
Messages
6,123,784
Members
449,124
Latest member
shreyash11

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