Re: adapting the findnext function
- From: "Norman Jones" <normanjones@xxxxxxxxxxxxxxxxxxx>
- Date: Tue, 2 Aug 2005 11:10:03 +0100
Hi Chris,
Try:
'===============================>>
Sub FormatFoundValues()
Dim entry As Range, foundentry As Range, firstaddress As String
For Each entry In Range("b4:h76")
If Not IsError(Application.Match _
(entry.Value, Range("J2:J30"), 0)) Then
Set foundentry = Cells.Find(what:=entry.Value)
If Not foundentry Is Nothing Then
firstaddress = foundentry.Address
Do
With foundentry.Font
.ColorIndex = 5
.Bold = True
.Italic = True
End With
Set foundentry = Cells.FindNext(After:=foundentry)
Loop While Not foundentry Is Nothing _
And foundentry.Address <> firstaddress
End If
End If
Next entry
End Sub
'<<==================================
--
---
Regards,
Norman
"chrisrowe_cr" <chrisrowe_cr.1t4qan_1122973542.0101@xxxxxxxxxxxxxxxxxxxxx>
wrote in message
news:chrisrowe_cr.1t4qan_1122973542.0101@xxxxxxxxxxxxxxxxxxxxxxxx
>
> Hi all,
>
> I need to adapt the following code that was kindly given to me to
> include the red bit! I dont know any VB but i would guess that its
> only a minor mod?
>
> Sub FormatFoundValues()
> Dim entry As Range, foundentry As Range, firstaddress As String
> For Each entry In Range("b4:h76") **that is equal to an entry in
> the range j2:j30**
> Set foundentry = Cells.find(what:=entry.Value)
> If Not foundentry Is Nothing Then
> firstaddress = foundentry.Address
> Do
> With foundentry.Font
> ColorIndex = 5
> Bold = True
> Italic = True
> End With
> Set foundentry = Cells.FindNext(After:=foundentry)
> Loop While Not foundentry Is Nothing And foundentry.Address
> <> firstaddress
> End If
> Next entry
> End Sub
>
>
> --
> chrisrowe_cr
> ------------------------------------------------------------------------
> chrisrowe_cr's Profile:
> http://www.excelforum.com/member.php?action=getinfo&userid=25220
> View this thread: http://www.excelforum.com/showthread.php?threadid=392077
>
.
- Follow-Ups:
- Re: adapting the findnext function
- From: Norman Jones
- Re: adapting the findnext function
- References:
- adapting the findnext function
- From: chrisrowe_cr
- adapting the findnext function
- Prev by Date: RE: How do I set Excel cell format to "Text" from VB.NET?
- Next by Date: Re: VB Extensibility Library - 97 to 2002
- Previous by thread: adapting the findnext function
- Next by thread: Re: adapting the findnext function
- Index(es):
Relevant Pages
|
Loading