delete the "dim wb..." "dim sh..." "set wb..." "set sh..." lines and replace
the
set rng line with

set rng=range("A1:IV65536")

*note: the range("A1:IV65536") part will check every cell in the worksheet,
which could take 2 or 3 minutes. and it could make your computer freak out
and crash excel depending on your memory. I wouldn't recommend keeping it at
A1:IV65536 so replace the part inside the quotes with whatever range best
fits. or if the range is named, then just write the range name inside the
parenthesis, no quotes

"Fabrizio" wrote:

> I have a sub that searches for blanks and removes them. however someone
> helped me with the code and i do not know how to write it so that it works
> for any workbook. In the code below a specific workbook is used but if I save
> the file under different name it does not work. how do you write the code so
> that it refers to the current workbook that is open?
>
>
> Public Sub findAndRemoveBlanks()
> Dim WB As Workbook
> Dim SH As Worksheet
> Dim rng, rCell As Range
>
> Set WB = Workbooks("20060619c")
> Set SH = WB.Sheets("Indata")
> Set rng = SH.UsedRange
> 'Set rng = SH.Range("A1:p100")
> For Each rCell In rng.Cells
> With rCell
> If Not IsEmpty(.Value) Then
> If Not UCase(.Value) Like "*[A-Z]*" Then
> .Replace What:=" ", Replacement:=""
> End If
> End If
> End With
> Next rCell
>
> End Sub