Look in the vba help index for FINDNEXT. There is a good example.
c.value=1001

Signature
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com
> Hi,
>
[quoted text clipped - 8 lines]
>
> Any help greatly appreciated.....thanks, Jason
Hi Jay........
I got some similar help from "Ed from Az" and "Hemant_india" in another
group. Perhaps this is what you're looking for.....
Sub ChgValuesInSelectedRange()
Dim Range1 As Range
Dim EaCell As Range
Set Range1 = Selection
For Each EaCell In Range1
If IsNumeric(EaCell.Value) Then
If EaCell.Value < Range("a14").Value And EaCell.Value <> "" Then
EaCell.Value = Range("a15").Value
End If
End If
Next EaCell
End Sub
Vaya con Dios,
Chuck, CABGx3
> Hi,
>
[quoted text clipped - 8 lines]
>
> Any help greatly appreciated.....thanks, Jason
Jay - 22 Nov 2007 19:40 GMT
Thanks Chuck...that's great. I've managed to do it thanks to your code.
I've only written VBA for Access (because you *have* to if you want any
proper functionality.
I guess I just have to start thinking in terms of ranges etc., rather
than the access object model.
Thanks again........Regards, Jason, UK
> Hi Jay........
> I got some similar help from "Ed from Az" and "Hemant_india" in another
[quoted text clipped - 28 lines]
>>
>> Any help greatly appreciated.....thanks, Jason
CLR - 23 Nov 2007 19:33 GMT
You're welcome Jay, glad you got it working. Thanks for the feedback.
Vaya con Dios,
Chuck, CABGx3
> Thanks Chuck...that's great. I've managed to do it thanks to your code.
>
[quoted text clipped - 38 lines]
> >>
> >> Any help greatly appreciated.....thanks, Jason