Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Microsoft Support > Microsoft Office support
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Microsoft Office support MS Office support forum

Reply
 
LinkBack Thread Tools
Old 11-01-2009, 08:18 AM   #1 (permalink)
Tech, Microsoft Support
 
Lydokane's Avatar
 
Join Date: May 2005
Location: Michigan City
Posts: 480
OS: Win XP Pro SP2


Can Excel sort my lottery numbers?

I am using Excel 2003.

At work we are running a lottery pool. There are 22 of us who buy a $5 ticket twice a week. We all use the same numbers with every purchase. I would like to make a worksheet (and/or a macro) that makes it easy for me to verify if any tickets have a cash value. My plan was to use cells A3:E112 to record all of our picks and use cells A1:A5 to record each drawing. When I input the numbers for the drawing I want Excel to highlight any matching numbers from our picks. I know conditional formatting will not work because you only get three conditions. I am guessing that a macro is necessary. I appreciate any help somebody could give me.

Thanks,

Lydokane
__________________
Lydokane is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Important Information
Join the #1 Tech Support Forum Today - It's Totally Free!

TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free.

Join TechSupportforum.com Today - Click Here

Old 11-01-2009, 08:32 AM   #2 (permalink)
Moderator/ Rangemaster TSF Academy; Analyst, Security Team; Oor Wullie; TSF Surgeon and Resident Comic
 
Glaswegian's Avatar
 
Join Date: Sep 2005
Location: Glasgow
Posts: 25,499
OS: Win XP Pro SP3 / Win 7 Pro

My System

Blog Entries: 10
Re: Can Excel sort my lottery numbers?

Hi Lydokane

This is some code I've been using for several years and for a variety of uses. It matches cells in the first range against cells in the second range. The ranges do not need to be of equal size. When you run the code an input box will appear - use the mouse to select the first range, click OK and repeat for the second range. If there is a match then the cells in the second range turn green - if there is no match then the cells in the first range turn red.

Something I noticed was that the two ranges you have listed seem to overlap - I'm assuming this was just a typo...

Code:
Sub FindDuplicates()
Dim rng1 As Range
Dim rng2 As Range
Dim bMatch As Boolean
Dim origRng As Range
Dim compRng As Range

On Error Resume Next
Set origRng = Application.InputBox("Choose the first range", "Range 1", Type:=8)
    If origRng Is Nothing Then Exit Sub
Set compRng = Application.InputBox("Choose the second range", "Range 2", Type:=8)
'matches first cell in first range against each cell in second range
'ranges do not need to be equal size
'if there is a match then cell in second range turns green
'if there is not a  match then cell in first range turns red
    For Each rng1 In origRng
        bMatch = False
        For Each rng2 In compRng
            If rng1 = rng2 Then
                bMatch = True
                rng2.Interior.ColorIndex = 4
            End If
        Next rng2
            If bMatch = False Then
                rng1.Interior.ColorIndex = 3
            End If
    Next rng1
End Sub
__________________
Iain - Defender of the Haggis and all things Scottish.
I don't help by PM - post in the Forums.



PC Safety & Security::PC running a bit slow?::Donate::Photographers Corner
Glaswegian is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT -7. The time now is 01:23 AM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85