+ Reply to Thread
Results 1 to 11 of 11

Fantasy Football Draft Day Player Rankings Formula

Hybrid View

  1. #1
    Registered User
    Join Date
    08-31-2012
    Location
    United States
    MS-Off Ver
    Excel 2003
    Posts
    24

    Fantasy Football Draft Day Player Rankings Formula

    Hey All,

    I am trying to create a fantasy football draft day guide. I have copy and pasted off of the internet of all the players complete with hyperlinks. I have also gotten a hold of the average draft position of each player from mock drafts completed around the country. What I want to do is take that number and convert it to which corresponding round it equates to in a 12-team league. For instance, say a certain players average draft position (ADP) 13, i want to create a formula that would indicate convert the ADP to something like "Early 2nd Round", or perhaps "2.1" (meaning the 1st pick in the second round). Or say a certain players ADP is 26, an outcome of "Early 3rd round", or perhaps 3.2 (2nd pick in the 3rd round).

    Seeing as though my list has over +250 players, it will be WAY to tedious to do it manually for each player, A nice click and drag formula would be awesome. I fiddled around with the If/Then function, but it is more than 7 outcomes, so it won't work. I also tried the LOOKUP function, but that doesn't seem to work so well as the Lookup_vector always rounds down to the closest Lookup_value and produces an incorrect result.

    Perhaps a simple math formula, but I can't get my head wrapped around the arithmetic.

    Any thoughts?
    Last edited by JBeaucaire; 08-31-2012 at 09:31 PM.

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Fantasy Football Draft Day Player Rankings - Formula/function help

    I know nothing of fantasy football, so help me out here.

    1) How many drafts per round?
    2) What column on your sheet lists "draft position"? I'm assuming that's a number from 1-250, right?

    Any possibility you can provide a sheet to work from that lays out your collected data and then demonstrates manually the results you're after, at least the first few in the list?

    Click GO ADVANCED and use the paperclip icon to post up a copy of your workbook.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Registered User
    Join Date
    07-27-2012
    Location
    Watertown, WI, USA
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Fantasy Football Draft Day Player Rankings Formula

    I think I have a pretty good idea on a suggestion for you. As I am a fellow fantasy player and do run various spreadsheets. My problem is that I have cumbersome solutions. For example, I would add a row offset from your data that marks each player 1 through 250+. In the next column, I would have the following formula.

    =ROUNDUP(X2/12,0)

    Where X2 is the first player in your rankings. This would output the round that your player list would be selected.

    In the next column, I would put the following formula.

    =RANK(X2,$X$2:$X$13,1)

    This be able to number the pick in within the round. The catch with my way is that you would have to set the range for each round. I'm sure there is an easier way, but this still works.

    Lastly, I would put the following formula in the third column.

    =Y2&"."&Z2

    This would put the round and pick together. For example, the result is 1.1. I would then hide the round and draft position columns so it looks a little more presentable. You don't need to have extra data when trying to make quick decisions within that minute and a half.

    As soon as I figure out how to do it, I will attach my personal draft sheet with other things that I have done to show exactly what I mean. These columns that I described above are highlighted in light blue.

    Let me know if there are any questions.

    Good luck in fantasy!!

    Brian

  4. #4
    Registered User
    Join Date
    08-31-2012
    Location
    United States
    MS-Off Ver
    Excel 2003
    Posts
    24

    Re: Fantasy Football Draft Day Player Rankings Formula

    Jbeaucaire,

    Thanks for the response. I've attached the spreadsheet to give you a better idea of what I am trying to accomplish. Column A is the overall rank but is not important in what I am trying to accomplish. Column B is the player, and Column C is the ADP.

    The ADP is just an overall number, and I want to know which round this ADP would correlate to in a 12 man league. The ADP doesn't take into account how many members are in a particular league, so I want to convert the data to how it would apply in my league. This data will help me forecast when I need to pick whom and where to target a certain player.

    This would mean that each round is 12 picks. So... since the ADP come with decimals, pick 14.79 would equate to between the 2nd and 3rd pick in round two (round 1 = 1-12; round 2 = 13-24 and so on and so on). That's why I was thinking that the output could be "Rd. 1 - 1st 1/2" or "Rd. 2 - 2nd 1/2", or even X.X, (first x being the round, second x being the particular pick).

    It's not that hard to do in your head at 0-24, but when you get up to 147.65.... well... the math gets a little confusing (especially considering I will be drinking

    Thanks!
    Attached Files Attached Files
    Last edited by 6string; 08-31-2012 at 10:41 PM.

  5. #5
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Fantasy Football Draft Day Player Rankings Formula

    My idea is to just use:

    1.1
    1.2
    .
    .
    1.11
    1.12
    2.1
    2.2

    etc...

    In D1 enter the number of draft picks per round, 12 in your case.
    In D2 enter this formula and copy downward:

    =CEILING(A2/$D$1,1)&"."&IF(MOD(ROW()-1,$D$1)=0,$D$1, MOD(ROW()-1,$D$1))

    Changing the value in D1 will instantly reassess the list.
    Last edited by JBeaucaire; 09-01-2012 at 04:24 PM. Reason: correction in red

  6. #6
    Registered User
    Join Date
    08-31-2012
    Location
    United States
    MS-Off Ver
    Excel 2003
    Posts
    24

    Re: Fantasy Football Draft Day Player Rankings Formula

    THanks. It works, but unfortunately the formula is based off the "rank" in column "a" when the "adp" in column "c" is what is I an interested in.

    I tried changing that aspect of your formula and the result doesn't work by changing A2 to C2. For instance, the player with an adp of 14.19 comes back as "2.12", when it should be "2.2".

    It's the decimal point in column D that is causing the problem. Any work around?

    Any thoughts?

    Thanks for the help
    Last edited by JBeaucaire; 09-01-2012 at 04:25 PM. Reason: removed whole post quote, unneeded.

  7. #7
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Fantasy Football Draft Day Player Rankings Formula

    Interestingly, I thought of using column C, but from what I can see column C is exactly the same order sequentially as column A. That's why I didn't use it. Since column C is already sorted from lowest to highest, I have to encourage you to keep the formula as given.

    NOTE: I did make a tiny correction in the formula above.

  8. #8
    Registered User
    Join Date
    08-31-2012
    Location
    United States
    MS-Off Ver
    Excel 2003
    Posts
    24

    Re: Fantasy Football Draft Day Player Rankings Formula

    Thanks. Unfortunately, the numbers aren't so close in sequence after 130, and continues to get worse thereafter. I appreciate the help, and hate to sound ungrateful, but is there any work arounds you can suggest?

  9. #9
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Fantasy Football Draft Day Player Rankings Formula

    Heh, starting to feel dense here. I just put a rank formula on your column C.

    =RANK(C2,$C$2:$C$237,1)

    ...copied down. Even at around 130 the numbers stay sequential. I don't see any numbers that are "out of order". I fear I'm missing some thing here.

  10. #10
    Registered User
    Join Date
    08-31-2012
    Location
    United States
    MS-Off Ver
    Excel 2003
    Posts
    24

    Re: Fantasy Football Draft Day Player Rankings Formula

    So we appear to have a misunderstanding, I'll try and be more clear.

    So if you look at Column A each player is ranked #1 through #236. This number was assigned by some so called "expert" that works for CBS sportsline. These rankings are simply the opinion of one person.

    Column C is the average pick that people are selecting that certain player during fantasy football drafts around the country. I am more interested in this number as it is the opinion of thousands, instead of one person.

    so, to illustrate how each of these columns are not necessarily in sequence, refer to row 237. Here you can see that Olindo Mare is "ranked" 236 (column A) but his average draft position is 182.47 (column C).

    Obviously there are players in the NFL that are being drafted that are not on the list. So, even though there are 236 players that are ranked, the last player on the list average draft position is 182.47.

    I am more interested in the ADP as it is the opinion of thousands, and not just the few so called "experts" that put together the list.

    Sorry if I am being redundant. I may be confused on what is confusing you.

  11. #11
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Fantasy Football Draft Day Player Rankings Formula

    OK, I'm interested in that number now, too. So, how does the knowledge about what those numbers actually mean help change the list you wanted?

    You asked for a numeric sequence 1.1-1.12 for the first 12 picks in that list, then 2.1-2.12 for the next 12. The formula I provided does that. It works the same whether you use column A or column C.

    Is there something substantive that will change in sequence of numbers?

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

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