Bernie,
Well that broadened my command of the english language!! I've never heard of
then called that before and in all honesty looked it up before responding.
Now how can I slip that into conversation??
Mike
"Bernie Deitrick" wrote:
> Of course, that will fail if your actual values have octothorps included.
>
> HTH,
> Bernie
> MS Excel MVP
>
>
> "Bernie Deitrick" <deitbe @ consumer dot org> wrote in message
> news:(E-Mail Removed)...
> > Maury,
> >
> > You need to use the Text property of the range object:
> >
> >
> > Sub FindHashes()
> > Dim myC As Range
> > For Each myC In Range("A1:C10") 'Change to suit
> > If InStr(1, myC.Text, "#") > 0 Then
> > MsgBox myC.Address & " has the text " & myC.Text & " instead of " & myC.Value
> > End If
> > Next myC
> >
> > End Sub
> >
> > HTH,
> > Bernie
> > MS Excel MVP
> >
> >
> > "Maury Markowitz" <(E-Mail Removed)> wrote in message
> > news:d3fd0110-971c-4261-8f5e-(E-Mail Removed)...
> >>I like autofit, but sometimes you want to hand-size a column. But then
> >> when the numbers overflow, it's nice to be able to jiggle them.
> >>
> >> But how do I find which columns are not wide enough? Is there a trick?
> >>
> >> Maury
> >
> >
>
>
>