Gang -
In set range r this code works:
With r
.formula = .value
End With
This doesn't:
With r
.formula = vba.replace(.value,chr(160),chr(32),1)
End With
What am I missing?
Thanks in advance.
...best, Hash
Toppers - 21 Jan 2006 14:44 GMT
Is this what you want?
For Each cell In r
cell.Value = Replace(cell.Value, chr(160), chr(32), 1)
Next
> Gang -
>
[quoted text clipped - 14 lines]
> Thanks in advance.
> ....best, Hash
Toppers - 21 Jan 2006 14:59 GMT
rowno = Selection.Find("123").Row
> Gang -
>
[quoted text clipped - 14 lines]
> Thanks in advance.
> ....best, Hash