1. #1
    TtownDick
    TtownDick's Avatar Become A Pro!
    Join Date: 07-11-14
    Posts: 1
    Betpoints: 62

    Converting American Odds to Decimal - Excel Formula

    Okay, I am NOT a sharp.
    And this is my first visit here.
    So NO flaming please.
    I came here looking for a function to use in my Excel worksheet to convert American odds to decimal.

    I THINK I came up with the equation, and wanted to share and make sure I got it right.
    There were a couple of things that were either confusing or way over my head.
    So I went back to work and came up with this:

    Assuming A1 is the American Odds, In B1, input:

    =IF(A1="","",IF(A1>0,(A1/100)+1,IF(A1<-1,(1+(A1*-1)))))

    This also takes into account a if there is no number in A1, B1 will remain blank.

    If you are looking for something like this, let me know if it works for you - or not.

    ps. Roll Tide!

  2. #2

  3. #3
    smoke a bowl
    smoke a bowl's Avatar Become A Pro!
    Join Date: 02-09-09
    Posts: 2,776
    Betpoints: 14472

    =IF(A1>0,100/(100+A1),-A1/(100+A1*-1)) This should work but guessing yours is fine as well.

  4. #4
    makman
    makman's Avatar Become A Pro!
    Join Date: 10-31-10
    Posts: 1,019
    Betpoints: 617

    Quote Originally Posted by smoke a bowl View Post
    =IF(A1>0,100/(100+A1),-A1/(100+A1*-1)) This should work but guessing yours is fine as well.
    but yours is not so fine...

  5. #5
    smoke a bowl
    smoke a bowl's Avatar Become A Pro!
    Join Date: 02-09-09
    Posts: 2,776
    Betpoints: 14472

    No shit?

  6. #6
    Cookie Monster
    Large moneylines
    Cookie Monster's Avatar SBR PRO
    Join Date: 12-05-08
    Posts: 2,249
    Betpoints: 9852

    I have always used:
    =IF(A1>0,1+A1/100,1-100/A1)

Top