![]() |
![]() |
![]() |
|||||
![]() |
![]() |
![]() |
![]() |
![]() |
|||
| 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: * 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 |
|
|||||||
| Microsoft Office support MS Office support forum |
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 (permalink) |
|
Registered User
Join Date: Jun 2005
Posts: 8
OS: Windows 2000
|
Excel VBA help - find cell content and highlight
Hi,
I want to try and create a macro that will start with the value in the first cell of one column and find it another column and highlight both itself and the other value and then move onto the next value in the cell below and repeat the same process until it reaches the end of the column. This would result in leaving unhighlighted cells as new items as it were that did not exist before. If anyone can help or give me a few pointers, I would be very grateful. Cheers, B. |
|
|
|
| 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 |
|
|
#2 (permalink) |
|
Moderator/ Rangemaster TSF Academy; Analyst, Security Team; Oor Wullie; TSF Surgeon and Resident Comic
|
Re: Excel VBA help - find cell content and highlight
Hi
Various ways to do this. Here's some code that I use (or modify) for a similar kind of thing. Basically, it matches the first cell in the first range against each cell in the second range and so on. If there is a match, then it turns the cell in the second range green. If there is no match, then it turns the cell in the first range red. The ranges do not have to be of equal size. 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)
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 |
|
|
|
![]() |
| Thread Tools | |
|
|