Cookie Policy: This web site uses cookies. By using this site you agree to our cookie policy.
Disclaimer: By posting on this web site it is accepted that you have agreed to the T&C. This is an information forum, and it is just that information, all views are of the individual poster and not that of the site owner. Please DO NOT publish copyrighted material without the owners permission. If you copy news or articles include a link back to the original site. Threads/Posts may be deleted on request. No other links without permission.
BEFORE POSTING A QUESTION: Your question has probably been asked before, so please use the
SEARCH FUNCTION, as we grow tired of answering the same question again and again.
Results 1 to 24 of 24

Thread: One for Mathare possibly!

  1. #1

    Join Date
    Apr 2003
    Posts
    6,629
    Rep Power
    84

    One for Mathare possibly!

    I'm trying to work out a dutching formula for three events. The required profit will be entered on the sheet (let's say A1 for ease) from that I need to work out three stakes based on odds in B1, B2, B3. So in C1,C2,C3 I am trying to get a formula that would work this out. I don't want to have it in a macro, just in excel itself. I can't seem to get anywhere without getting circular references.

    "I put a skylight in my apartment...... the people upstairs are furious." - Stephen Wright


    My Website : http://www.mrmrsportssystems.co.uk
    Now offering three subscription based betting systems and daily free bets.
    Free bets 34.7pts up in October


  2. #2

    Join Date
    Jun 2003
    Location
    London
    Posts
    26,503
    Rep Power
    185
    Let me have a think about this one, and a bit of a play. I know it's possible I just need to tinker and work out how.

    I'll be back with an answer later this evening



  3. #3

    Join Date
    Apr 2003
    Posts
    6,629
    Rep Power
    84
    Thanks Mat, if I see another excel circular reference window I'll uninstall excel

    "I put a skylight in my apartment...... the people upstairs are furious." - Stephen Wright


    My Website : http://www.mrmrsportssystems.co.uk
    Now offering three subscription based betting systems and daily free bets.
    Free bets 34.7pts up in October


  4. #4

    Join Date
    Jun 2003
    Location
    London
    Posts
    26,503
    Rep Power
    185
    I've done the easy case - fixed stake with a variable profit. I'm working on the other side of the coin now....



  5. #5

    Join Date
    Feb 2003
    Location
    East Yorkshire
    Posts
    7,604
    Rep Power
    77

    Thumbs up Hi

    I have got this one sussed out if you get stuck

    Just let me know :D

    Gordon



  6. #6

    Join Date
    Feb 2003
    Location
    East Yorkshire
    Posts
    7,604
    Rep Power
    77

    Thumbs up ......

    Just one pointer, it will require cols A, B, C & D :)

    Gordon



  7. #7

    Join Date
    Jun 2003
    Location
    London
    Posts
    26,503
    Rep Power
    185
    Quote Originally Posted by eastyorkshireracing View Post
    Just one pointer, it will require cols A, B, C & D :)

    Gordon
    My solution uses columns A to F! Methinks I may have over-engineered it slightly

    It's quite snazzy though :)



  8. #8

    Join Date
    Jun 2003
    Location
    London
    Posts
    26,503
    Rep Power
    185
    I'm off for me tea in a mo so fee free to jump in Gordon...



  9. #9

    Join Date
    Feb 2003
    Location
    East Yorkshire
    Posts
    7,604
    Rep Power
    77

    Thumbs up Ok.....

    OK, Here it is

    Just copy and paste into the appropriate cells.....

    C1 =IF(B3="","",VALUE(LEFT(B1,FIND("/",B1)-1)/MID(B1,FIND("/",B1)+1,LEN(B1))))
    C2 =IF(B3="","",VALUE(LEFT(B2,FIND("/",B2)-1)/MID(B2,FIND("/",B2)+1,LEN(B2))))
    C3 =IF(B3="","",VALUE(LEFT(B3,FIND("/",B3)-1)/MID(B3,FIND("/",B3)+1,LEN(B3))))

    C5 ="Outlay"
    C6 ="Profit"
    C7 ="% ROI"

    D1 =IF(C3="","",(SUM(C:C)/C1)*(A$1/SUM(C:C)))
    D2 =IF(C3="","",(SUM(C:C)/C2)*(A$1/SUM(C:C)))
    D3 =IF(C3="","",(SUM(C:C)/C3)*(A$1/SUM(C:C)))

    D5 =SUM(D1:D3) ......... [stupid forum that is sum D1 to D3]
    D6 =A1-D5
    D7 =IF(ISERROR(((A1/D5)-1)*100),0,((A1/D5)-1)*100)


    Then put the return you require in cell A1

    The three prices go in B1, B2 & B3 (usual 3/1, 4/1 10/1 format (1/1 for evens)).....

    A few minor jiggles might make it look more attractive :wink

    Gordon



  10. #10

    Join Date
    Jun 2003
    Location
    London
    Posts
    26,503
    Rep Power
    185
    If D6 is your profit you want that to equal A1 though which means D1:D3 must sum to 0.

    Doesn't it?



  11. #11

    Join Date
    Feb 2003
    Location
    East Yorkshire
    Posts
    7,604
    Rep Power
    77

    Thumbs up ?

    Surely the profit is the required return - the outlay (A1 minus D5).

    Gordon



  12. #12

    Join Date
    Feb 2003
    Location
    East Yorkshire
    Posts
    7,604
    Rep Power
    77

    Thumbs up Ahhhhha!!!!

    I have misunderstood that part. I was just looking at it as a required return not total profit, oh well back to the drawing board :)

    Gordon



  13. #13

    Join Date
    Jun 2003
    Location
    London
    Posts
    26,503
    Rep Power
    185
    I have thought about this over my tea and a few minutes of Top Gear on Dave and concluded that Matt's initial idea will involve circular references and there's no easy way round it. So I have given up

    Matt - download the attached and have a play. Just tweak the max stake to get the required profit. I've included the Betdaq odds from the Supreme Novice's Hurdle as an example

    Attached Files Attached Files


  14. #14

    Join Date
    Feb 2003
    Location
    East Yorkshire
    Posts
    7,604
    Rep Power
    77

    Thumbs up Solution

    It is possible to put a new column E

    then:

    E1 =(A1/D6)*D1
    E2 =(A1/D6)*D2
    E3 =(A1/D6)*D3

    This would then be your require stakes, assuming that it is not negative equity :)

    Bit messy though

    Gordon



  15. #15

    Join Date
    Apr 2003
    Posts
    6,629
    Rep Power
    84
    Thanks for all the hard work guys, about to go to bed so I'll have a proper look through it all tomorrow and see what's what. Thanks again, much appreciated :)

    "I put a skylight in my apartment...... the people upstairs are furious." - Stephen Wright


    My Website : http://www.mrmrsportssystems.co.uk
    Now offering three subscription based betting systems and daily free bets.
    Free bets 34.7pts up in October


  16. #16

    Join Date
    Jun 2003
    Location
    London
    Posts
    26,503
    Rep Power
    185
    I think I may have solved this in the shower but without a PC or even a piece of paper with me at the time I couldn't be sure my 'solution' didn't still involve circular references. I may try and look at this later



  17. #17

    Join Date
    Jun 2003
    Location
    London
    Posts
    26,503
    Rep Power
    185
    Thank goodness for showers! :D

    Use this version and change the dropdown in I1 to Max Stake or Min Profit accordingly.

    And not a circular reference in sight!

    Attached Files Attached Files


  18. #18

    Join Date
    Feb 2003
    Location
    East Yorkshire
    Posts
    7,604
    Rep Power
    77

    Thumbs up Ooooh!.....

    Quote Originally Posted by mathare View Post
    I think I may have solved this in the shower..... my 'solution' didn't still involve circular references.....
    ..... are you sure that wasn't "circular motions"

    Gordon



  19. #19

    Join Date
    Jun 2003
    Location
    London
    Posts
    26,503
    Rep Power
    185
    All my best ideas seem occur to me in the shower or when I am trying to get to sleep. I solve so many problems at those times



  20. #20

    Join Date
    Feb 2002
    Location
    N Wales
    Posts
    50,310
    Rep Power
    275
    Quote Originally Posted by mathare View Post
    All my best ideas seem occur to me in the shower or when I am trying to get to sleep. I solve so many problems at those times
    That's what I do.....but obviously not with Mat at the same time

    FREE Live Odds Comparison Software

    Keith Driscoll - Administrator
    Managing Director, Win2Win Limited



    Filipino UK Filipino Forum | Win2Win Racing - Free Tips


  21. #21

    Join Date
    Apr 2003
    Posts
    6,629
    Rep Power
    84
    Great stuff Mat :D

    "I put a skylight in my apartment...... the people upstairs are furious." - Stephen Wright


    My Website : http://www.mrmrsportssystems.co.uk
    Now offering three subscription based betting systems and daily free bets.
    Free bets 34.7pts up in October


  22. #22

    Join Date
    Nov 2006
    Location
    UK
    Posts
    7,561
    Rep Power
    90
    Looks like youre going to need another one of those 'Golden shower moments' Mat!

    "Listen to me. I can just about handle you, driving like a pissed-up crackhead and treating women like beanbags, but I’m going to say this once and once only, Gene: stay out of Camberwick Green!"
    http://www.youtube.com/watch?v=O_cIbBTkn70&feature=related


  23. #23

    Join Date
    Apr 2003
    Posts
    6,629
    Rep Power
    84
    Mat,

    Just to let you know it all works perfectly. I pasted it into a new sheet into the place I needed it and just amended any cell references in the fomula as I had to move the corresponding position of the min profit box.
    Thanks again

    "I put a skylight in my apartment...... the people upstairs are furious." - Stephen Wright


    My Website : http://www.mrmrsportssystems.co.uk
    Now offering three subscription based betting systems and daily free bets.
    Free bets 34.7pts up in October


  24. #24

    Join Date
    Jun 2003
    Location
    London
    Posts
    26,503
    Rep Power
    185
    Quote Originally Posted by MattR View Post
    Just to let you know it all works perfectly.
    I know :D

    Glad it's of use to you Matt



Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Mirror hacking 'possibly hidden'
    By Win2Win Racing in forum Global News
    Replies: 1
    Last Post: 16th January 2012, 16:02
  2. One for Mat possibly
    By MattR in forum Horse Racing Discussion, Daily Waffle, Q&A
    Replies: 1
    Last Post: 23rd April 2010, 12:34
  3. F.A.O. Mathare..
    By wb in forum PC Help/Advice - 100% FREE
    Replies: 7
    Last Post: 19th May 2007, 10:55
  4. FAO Mathare
    By Sandman in forum PC Help/Advice - 100% FREE
    Replies: 21
    Last Post: 24th February 2006, 17:21

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Free Tips | Betting Advice | UK Horse Racing Tips | Free Bets | Staking Advice | Horse Racing Systems | Horse Racing Lays | Laying System | UK Horse Racing Tips | lay betting