You could use a macro
Sub trimall()
Application.ScreenUpdating = False
Dim myRange As Range
Set myRange = Range("A1:D1000") '< Change to suit
For Each c In myRange
c.Select
c.Value = Trim(c.Value)
Next c
Application.ScreenUpdating = True
End Sub
Mike
> Is it possible to trim an entire worksheet?
fitou_learn - 12 Jun 2007 11:06 GMT
Many thanks Mike. It worked a treat!
> You could use a macro
>
[quoted text clipped - 12 lines]
>
> > Is it possible to trim an entire worksheet?