> But the last two were much faster than looking at each cell.
>
> > Thank you all for you help. They all worked.
> >
> > Smythe32
> Although I do believe your solution was the best just based on simplicity.
then you need to look harder. <g> A lot of times half a solution looks
simpler.
It has no error checking and doesn't overtly declare other persistent
arguments which could result in a crap shoot as to whether it actually works
or not. It could raise intermittent 91 errors when the match is not made
with no clear indication of why.
Not to say that find isn't the best solution - just to say that this
implementation of it is problematic because of omissions.
No criticism of Don who was just plopping down a worthy concept with minimal
investment in time - but you appear to have made you assessment on face
value.
Just a friendly observation and certainly my opinion. <g>

Signature
Regards,
Tom Ogily
> picoseconds vs milliseconds? Lets be honest, unless you are dealing with
> thousands entries, the user is not going to notice a difference in 255
> columns headings.
>
> Although I do believe your solution was the best just based on simplicity.
Don Guillett - 20 Sep 2006 13:19 GMT
from a more thoughtful post of mine a day or so ago which may be adapted.
I do deserve criticism often!!<g> Somehow, I like find better than a
worksheet function.
Sub findandcopycol()
Set mc = Rows(1).find("Addresses")
If Not mc Is Nothing Then Columns(mc.Column) _
.Copy Sheets("sheet4").Columns(1)
End Sub

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
>> Although I do believe your solution was the best just based on
>> simplicity.
[quoted text clipped - 22 lines]
>> Although I do believe your solution was the best just based on
>> simplicity.