Thread: Clean funtion
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett[_4_] Don Guillett[_4_] is offline
external usenet poster
 
Posts: 2,337
Default Clean funtion

I can't remember it there is a vba equivalent so try this

sub cleanitup()
for each cel in selection
cel.value=application.clean(cel)
next
end sub

--
Don Guillett
SalesAid Software

"JJ" wrote in message
...
Is there a way I can apply the clean function to my whole spreadsheet?