Select Page
Poker Forum
Over 1,292,000 Posts!
Poker ForumFTR Community

Excel Help

Results 1 to 23 of 23
  1. #1
    supa's Avatar
    Join Date
    Feb 2010
    Posts
    3,529
    Location
    At the bar drinking whisky with an "e"

    Default Excel Help

    I recently started using excel at work and haven't had any experience with it (or any other data entry programs) before. What I use it for for at work is very simple but I'm interested in learning it better.

    What I'm trying to do now is create a formula I can use for sit n go's. I taught myself how to input the formula but creating one is starting to make my head spin. I guess the question is more math related.

    What I'm looking for is: stake, games played, game won, games lost, profit and ROI. Whatever's easiest but something I can play around with to try and learn some more.

    Thanks in advance for the help.
    “Right thoughts produce right actions and right actions produce work which will be a material reflection for others to see of the serenity at the center of it all”

    Put hero on a goddamn range part II- The 6max years

    Quote Originally Posted by d0zer View Post
    start using your brain more and vagina less

    Quote Originally Posted by kingnat View Post
    Members who's signature is a humorous quote about his/herself made by someone who is considered a notable member of the FTR community to give themselves a sense of belonging.
  2. #2
    stake, games played, game won, games lost, profit and ROI.

    use them as titles ^^

    Job done
  3. #3
    MadMojoMonkey's Avatar
    Join Date
    Apr 2012
    Posts
    10,456
    Location
    St Louis, MO
    umm...

    What data have you collected (or do you plan to collect)?

    Generally, it's a good idea to put data in columns, with a title at the top.

    For formulas that track with the data, you'll want a column for those as well.

    For formulas that are summaries, leave room at the top of the sheet, or off to the side of the data.

    If you plan to make graphs, it's easiest if you make your left-most column of data the info you want for your x-axis... easiest, but by no means necessary.
  4. #4
    What kind of SNGs are they - heads up?

    For your ones you could do:

    Games played - column of numbers increasing by 1 each time
    Game won - in each row you enter if you won that game (Yes or No)
    Stake - you enter the stake (you could have a table containing rake amounts and have a function to automatically subtract rake)
    Profit - + or - the stake after rake depending on won or lost
    ROI - return on investment is profit (sum all profit) times total staked (games played * stake of each)
  5. #5
    supa's Avatar
    Join Date
    Feb 2010
    Posts
    3,529
    Location
    At the bar drinking whisky with an "e"
    Quote Originally Posted by Pascal View Post
    What kind of SNGs are they - heads up?

    For your ones you could do:

    Games played - column of numbers increasing by 1 each time
    Game won - in each row you enter if you won that game (Yes or No)
    Stake - you enter the stake (you could have a table containing rake amounts and have a function to automatically subtract rake)
    Profit - + or - the stake after rake depending on won or lost
    ROI - return on investment is profit (sum all profit) times total staked (games played * stake of each)

    Double or nothings (6max) right now but I might change that up at some point so I want to make it versatile.

    Anyway, I'm not sure I'm asking the right question so here's what I've figured out. If I Type the stake in A1 and then my winnings in B1 and then the formula =B1/A1 in C1 I get my ROI unconverted to % and then I know how to do that. What I'm looking to do is come up with a formula that allows me to do everything I said in the OP and then change just 1 value (or more, whatever) and have them all update automatically.

    It's probably a pretty long formula and really I'm just looking to learn this stuff so I'll keep working on it and see what happens.
    “Right thoughts produce right actions and right actions produce work which will be a material reflection for others to see of the serenity at the center of it all”

    Put hero on a goddamn range part II- The 6max years

    Quote Originally Posted by d0zer View Post
    start using your brain more and vagina less

    Quote Originally Posted by kingnat View Post
    Members who's signature is a humorous quote about his/herself made by someone who is considered a notable member of the FTR community to give themselves a sense of belonging.
  6. #6
    supa's Avatar
    Join Date
    Feb 2010
    Posts
    3,529
    Location
    At the bar drinking whisky with an "e"
    Also, trying to make it so whichever column I make ROI I can make that column the same all the way down for different stakes so C=B/A whether it C1, C2, C3...
    “Right thoughts produce right actions and right actions produce work which will be a material reflection for others to see of the serenity at the center of it all”

    Put hero on a goddamn range part II- The 6max years

    Quote Originally Posted by d0zer View Post
    start using your brain more and vagina less

    Quote Originally Posted by kingnat View Post
    Members who's signature is a humorous quote about his/herself made by someone who is considered a notable member of the FTR community to give themselves a sense of belonging.
  7. #7
    Hover mouse over bottom right corner of cell with formula in it and click and drag down to copy and paste the formula. Would also have column c as profit and d as roi (that's what I have anyway, but I do one line for each sng and also include date, site, time, etc).

    Also recommend looking into pivot tables-they're excellent for quickly tabulating any data you may want to drill into.

    Sorry for short reply as on phone and half asleep.
  8. #8
    supa's Avatar
    Join Date
    Feb 2010
    Posts
    3,529
    Location
    At the bar drinking whisky with an "e"
    Thanks Bean, that helped.

    I pretty much figured it out.

    If A1, B1, C1, D1, E1 is
    Stake, Games Won, Games Lost, $Won, ROI then
    D1 is =A2*B2-A2*C2 and E1 is +D2/A2

    Easy game.

    *edit* what this doesn't do is allow me to put in total winnings without subtracting the buy-in. Back to work.

    *edit2* this also doesn't account for rake
    Last edited by supa; 12-17-2012 at 08:44 PM.
    “Right thoughts produce right actions and right actions produce work which will be a material reflection for others to see of the serenity at the center of it all”

    Put hero on a goddamn range part II- The 6max years

    Quote Originally Posted by d0zer View Post
    start using your brain more and vagina less

    Quote Originally Posted by kingnat View Post
    Members who's signature is a humorous quote about his/herself made by someone who is considered a notable member of the FTR community to give themselves a sense of belonging.
  9. #9
    More than one stake or just one stake?
  10. #10
    Supa -- it's easiest if you keep each row as a separate game, and don't try to keep a rolling total in each row. Instead, put a row at the bottom that adds up all of your single-game totals. (This is a pretty common way of tracking data in Excel).

    Example (column headers starting from A1):
    Buy-in, Rake, Gross $Won, Net $Won, ROI, Win?

    Values (actual data starts in A2):
    Buy-in, Rake, Gross $Won: enter the actual values
    Net $Won: =C2-B2-A2
    ROI: =D2/A2
    Win? =IF(C2>0, 1, 0)

    Then, if you want a summary row, you can just auto-sum for most of the columns (except ROI -- you'd use the same formula in the other rows). Auto-sum is the sigma button -- select the cell where you want the auto-sum to go, press the sigma button, then select the cells you want to add up and press enter.
  11. #11
    supa's Avatar
    Join Date
    Feb 2010
    Posts
    3,529
    Location
    At the bar drinking whisky with an "e"
    Thanks guys. Think I got it.
    “Right thoughts produce right actions and right actions produce work which will be a material reflection for others to see of the serenity at the center of it all”

    Put hero on a goddamn range part II- The 6max years

    Quote Originally Posted by d0zer View Post
    start using your brain more and vagina less

    Quote Originally Posted by kingnat View Post
    Members who's signature is a humorous quote about his/herself made by someone who is considered a notable member of the FTR community to give themselves a sense of belonging.
  12. #12
    You can make the cells have pretty colours!
  13. #13
    Quote Originally Posted by kiwiMark View Post
    You can make the cells have pretty colours!
    You're wasted here. Get yourself a job at Microsoft!!!!
    Normski
  14. #14
    I could be that paperclip.
  15. #15
    Hi! It looks like you're trying to use Excel to solve a simultaneous equation...would you like some help picking a nicer font?
  16. #16
    bode's Avatar
    Join Date
    May 2006
    Posts
    8,043
    Location
    slow motion
    back when i still played poker there were many free excel spreadsheets that do exactly what you want and more floating around. Check on 2p2 maybe. Unless you just want the challenge of creating one from scratch.
    eeevees are not monies yet...they are like baby monies.
  17. #17
    DoubleJ's Avatar
    Join Date
    Mar 2011
    Posts
    865
    Location
    Still on that feckin' island!
    Quote Originally Posted by NightGizmo View Post
    Net $Won: =C2-B2-A2
    [Nitpick]

    Net $Won: =C2-(A2+B2) is more elegant

    [/Nitpick]
    don't want no tutti-frutti, no lollipop
  18. #18
    DoubleJ's Avatar
    Join Date
    Mar 2011
    Posts
    865
    Location
    Still on that feckin' island!
    Quote Originally Posted by NightGizmo View Post
    ROI: =D2/A2
    Also, you need to include impact of Rake in this formula:

    ROI = (Gain from Investment - Cost of Investment)/Cost of Investment

    or ROI = D2/(A2+B2)
    don't want no tutti-frutti, no lollipop
  19. #19
    Quote Originally Posted by DoubleJ View Post
    Also, you need to include impact of Rake in this formula:

    ROI = (Gain from Investment - Cost of Investment)/Cost of Investment

    or ROI = D2/(A2+B2)
    I realized I made a mistake somewhere regarding rake (after I pressed submit), but didn't bother to fix it. Thanks for the clarification.
  20. #20
    DoubleJ's Avatar
    Join Date
    Mar 2011
    Posts
    865
    Location
    Still on that feckin' island!
    no worries
    don't want no tutti-frutti, no lollipop
  21. #21
    supa's Avatar
    Join Date
    Feb 2010
    Posts
    3,529
    Location
    At the bar drinking whisky with an "e"
    lol union spreadsheet.
    “Right thoughts produce right actions and right actions produce work which will be a material reflection for others to see of the serenity at the center of it all”

    Put hero on a goddamn range part II- The 6max years

    Quote Originally Posted by d0zer View Post
    start using your brain more and vagina less

    Quote Originally Posted by kingnat View Post
    Members who's signature is a humorous quote about his/herself made by someone who is considered a notable member of the FTR community to give themselves a sense of belonging.
  22. #22
    !Luck's Avatar
    Join Date
    Feb 2004
    Posts
    1,876
    Location
    Under a bridge
    Learn python and call it GG.
  23. #23
    supa's Avatar
    Join Date
    Feb 2010
    Posts
    3,529
    Location
    At the bar drinking whisky with an "e"
    Googled python and no idea wtf any of that said.
    “Right thoughts produce right actions and right actions produce work which will be a material reflection for others to see of the serenity at the center of it all”

    Put hero on a goddamn range part II- The 6max years

    Quote Originally Posted by d0zer View Post
    start using your brain more and vagina less

    Quote Originally Posted by kingnat View Post
    Members who's signature is a humorous quote about his/herself made by someone who is considered a notable member of the FTR community to give themselves a sense of belonging.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •