View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
阿三 阿三 is offline
external usenet poster
 
Posts: 6
Default Is there any method to remove...

Sorry that I just want to remove the [ ' ] in front of cells with
numbers, say to change [ '1234 ] to become [ 1234 ].

Anyway, many thanks.

"Tom Ogilvy" 撰寫於郵件新聞
...
Dim cell as Range
for each cell in selection
if not cell.HasFormula then
cell.formula = cell.Value
end if
Next

--
Regards,
Tom Ogilvy

"阿三" wrote in message
...
all asterisk which has placed unevenly in the same column of cells

by
formulas?

e.g. [ '12345678 ] change to [ 12345678 ]