Re: FIND in only one column
- From: "Tim Williams" <saxifrax@pacbell*dot*net>
- Date: Wed, 29 Jun 2005 22:13:18 -0700
Can you post the actual code you tried and define "does not seem to
work". Did you get an error or was it just not found?
You could try adapting the example from Help.
With Worksheets(1).Range("a:a")
Set c = .Find(2, lookin:=xlValues)
If Not c Is Nothing Then
firstAddress = c.Address
Do
c.Value = 5
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> firstAddress
End If
End With
Tim
"R.VENKATARAMAN" <vram26@vsnl$$$.net> wrote in message
news:%23FRbehSfFHA.3692@xxxxxxxxxxxxxxxxxxxxxxx
>a particular text occurs in many columns.
> But I would like to find that only in one coumn for e.g. column A
> only and
> select that cell
> (in vba programme)
>
> i tried to use
> with columns("a:a")
>
> it does not seem to work
>
> I tried searching in newsgorups and I did not get an appropirate
> thread.
>
> request for suggestions. thanks regards.
>
>
.
- References:
- FIND in only one column
- From: R.VENKATARAMAN
- FIND in only one column
- Prev by Date: Re: How can I identify what cell was clicked on when I click on a ***
- Next by Date: Re: IsNumeric("121d1") = True ??
- Previous by thread: FIND in only one column
- Next by thread: Re: FIND in only one column
- Index(es):