+ Reply to Thread
Results 1 to 20 of 20

Keno Formula

  1. #1
    Registered User
    Join Date
    01-20-2016
    Location
    Boston, MA
    MS-Off Ver
    Office 2011 Mac
    Posts
    15

    Keno Formula

    This is basically a two part question. I play Keno often, and am trying to look for patterns. The lottery gives you list of all the winning numbers on its website. There are 80 numbers with 20 winning numbers. I numbered the columns 1-80 and so on.

    I wanna copy and paste the numbers into a row so that each corresponding number will go into its numbered column for that individual row.

    If that's not possible then I wanna place the numbers in columns 82-101 and highlight the sequential numbers, or if you can't do that then highlight the non sequential numbers. (I already figured out how to place 20 individual numbers into 20 individual columns. I just need the formula to recognize the sequential, or non sequential numbers)

    I appreciate your help with this issue. Thank you.

  2. #2
    Valued Forum Contributor mahju's Avatar
    Join Date
    11-27-2010
    Location
    Pakistan, Faisalabad
    MS-Off Ver
    Excel 2010 plus
    Posts
    730

    Re: Keno Formula

    You may need to upload a sample file (excel file) giving input and expected output reaults
    Thanks
    Mark the thread as solved if you are satisfied with the answer.


    In your first post under the thread tools.

    Mahju

  3. #3
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Keno Formula

    Quote Originally Posted by etm6477 View Post
    This is basically a two part question. I play Keno often, and am trying to look for patterns.
    Perhaps stating the obvious but unless the lottery is rigged you won't. And if you do spot any 'patterns' they'll be illusory and not due to any inherent bias in the system.
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  4. #4
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    5,937

    Re: Keno Formula

    Let's say that your have the 20 numbers in columns 83 to 102 (columns CF to CX), starting in Row 2.


    Then, in cell B2, enter the formula

    =IF(ISERROR(MATCH(COLUMN(A1),$CF2:$CX2,FALSE)),"",COLUMN(A1))

    And apply Conditional Formatting using the Formula option, using the formula

    =AND(B2<>"",OR(A2<>"",C2<>""))

    and select the highlighting that you want to use.

    Then copy B2 to C2:CC2.

    Finally, copy B2:CC2 down to match your list of numbers in CF:CX

    You do know that lotteries are random, so pattern finding won't help you win...
    Last edited by Bernie Deitrick; 01-20-2016 at 12:00 PM.
    Bernie Deitrick
    Excel MVP 2000-2010

  5. #5
    Registered User
    Join Date
    01-20-2016
    Location
    Boston, MA
    MS-Off Ver
    Office 2011 Mac
    Posts
    15

    Re: Keno Formula

    I've good at seeing patterns, and I've noticed it's not random. You're playing against a computer algorithm, and not random balls being drawn. I win $500 more than anyone I know because I group together the runs of 3 and 4 numbers when the numbers all start to come out in the games before, so if game 1 the 8,9 comes out, game 2 the 7,9, and game 3 the 7,8, then usually the 7,8,9 will come out next
    Last edited by etm6477; 01-20-2016 at 12:16 PM.

  6. #6
    Registered User
    Join Date
    01-20-2016
    Location
    Boston, MA
    MS-Off Ver
    Office 2011 Mac
    Posts
    15

    Re: Keno Formula

    Keno Sample.xlsx

    Attached is a sample file of what I would like done.

  7. #7
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    5,937

    Re: Keno Formula

    Try this file....

    Keno Sample 2.xlsx

  8. #8
    Registered User
    Join Date
    01-20-2016
    Location
    Boston, MA
    MS-Off Ver
    Office 2011 Mac
    Posts
    15

    Re: Keno Formula

    Bernie Thank you, you are awesome. When I hit big I'll take care of ya. haha.
    Now how can I make that apply to every row if I input a large group of numbers like I did to this sample, so that it will highlight the numbers automatically, and place them in there corresponding number with the highlight
    Attached Files Attached Files

  9. #9
    Registered User
    Join Date
    01-20-2016
    Location
    Boston, MA
    MS-Off Ver
    Office 2011 Mac
    Posts
    15

    Re: Keno Formula

    I added the wrong file. Here is the right one.
    Attached Files Attached Files

  10. #10
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    5,937

    Re: Keno Formula

    I think it would be better if you tried by yourself first.

    To start, position your set of numbers in the correct columns (the same columns as in my modified file), and just copy the 80 columns of formulas into the correct columns, extending down to match your list of numbers. The formulas and conditional formatting will update to the new rows of the new sheet, so you won't have to do anything else to that set.

    For the 20 columns of drawn numbers, copy the first row of numbers from my file, and paste formats over your entire set of data. The CF formulas will update correctly.

    If you can't get that to work, post back.

  11. #11
    Registered User
    Join Date
    01-20-2016
    Location
    Boston, MA
    MS-Off Ver
    Office 2011 Mac
    Posts
    15

    Re: Keno Formula

    It's not working

  12. #12
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    5,937

    Re: Keno Formula

    On that sheet that you posted, select cells C14:CD14 and press Ctrl-C to copy.
    Then select C16:CD148 and press Ctrl-V to paste.

    Then select cells CG14:CZ14 and press Ctrl-C to copy.
    Then select cells CG16:CZ148, and right-click your select, then choose the Paste Formats button or use Paste Special... / Formats / OK

  13. #13
    Registered User
    Join Date
    01-20-2016
    Location
    Boston, MA
    MS-Off Ver
    Office 2011 Mac
    Posts
    15

    Re: Keno Formula

    It's not working. It's only copy and pasting those 1st 3 rows

  14. #14
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    5,937

    Re: Keno Formula

    If you follow my instructions EXACTLY it would work. You should try again to do it yourself so that you learn how to use Excel.

    So, to that end, here is a workbook with simplified instructions - follow the instructions in the colored-in cells.

    Keno Sample 4.xlsx

  15. #15
    Registered User
    Join Date
    09-08-2017
    Location
    manukau
    MS-Off Ver
    office 2013
    Posts
    5

    Re: Keno Formula

    Importing keno results ?

    I have been inputting excel data from mylotto.co.nz everyday which is time consuming.

    Is there a way I can extract the keno results (1 to 80) from the above website directly into excel, so I could save time typing it in. ?


    Next question is : If for example I want to monitor 7 number results : 21 24 25 29 41 43 44 every draw.

    How do I make excel automatically colour those cells whenever any of the above numbers hit in the draw?

    I wish to assign say yellow to 20 series and green to 40 series.

    I attached a photo of the typed spreadsheet if there can be any help to improve the layout of labels in rows and columns.

    thanks
    puroko

  16. #16
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP and 2007
    Posts
    15,811

    Re: Keno Formula

    @puroko. This forum can be strict about some of its rules, such as the rule against posting your question in another member's (old) thread. You should start your own thread. If you believe that the information in this thread will be useful to help someone understand your question, you can link to this thread in your new thread.
    Quote Originally Posted by shg
    Mathematics is the native language of the natural world. Just trying to become literate.

  17. #17
    Registered User
    Join Date
    09-08-2017
    Location
    manukau
    MS-Off Ver
    office 2013
    Posts
    5

    Re: Keno Formula

    Hello Mrshorty,

    I cannot find create new thread link. that is why I posted on another member thread. Could you kindly tell me where the new thread is , so I can post my query. ? I read the faq for new thread but still could not find the new thread option.

  18. #18
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP and 2007
    Posts
    15,811

    Re: Keno Formula

    Navigate to the desired forum (this one seems as good as any https://www.excelforum.com/excel-for...and-functions/ ). Near the top above the list of threads in that forum, on the left, should be a large "+post new thread" button. Click on this button to go to the main post editing page where you can enter your message.

  19. #19
    Registered User
    Join Date
    09-08-2017
    Location
    manukau
    MS-Off Ver
    office 2013
    Posts
    5

    Re: Keno Formula

    I have been able to post a new thread. thanks for the link.

  20. #20
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Keno Formula

    @puroko

    please read the forumrules

    2. Don't post a question in the thread of another member -- start your own. If you feel it's particularly relevant, provide a link to the other thread. You may include up to 3 links to other URLs in a single post, no more, so only link to the relevant pages.
    Notice my main language is not English.

    I appreciate it, if you reply on my solution.

    If you are satisfied with the solution, please mark the question solved.

    You can add reputation by clicking on the star * add reputation.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. analying keno results for set patterns
    By peteroff in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 01-26-2015, 05:42 PM
  2. [SOLVED] lottery keno 100/20
    By jorel in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 12-15-2014, 08:19 AM
  3. Replies: 11
    Last Post: 06-06-2014, 03:34 PM
  4. how to hide formula in formula box, view lookup result in formula box?
    By vengatvj in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 10-14-2013, 04:06 PM

Tags for this Thread

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