View Single Post
  #9   Report Post  
Posted to microsoft.public.excel.programming
ward376 ward376 is offline
external usenet poster
 
Posts: 360
Default removing comma in data string

Try:

with range(yourrange)
..value = .value
end with

Cliff Edwards