View Single Post
  #4   Report Post  
JE McGimpsey
 
Posts: n/a
Default

Note: if your numbers are formatted for fewer decimal places than their
stored values (i.e, 1.2345 displayed as 1.23), and you only want to keep
the displayed values, use

cell.Value = Chr(34) & cell.Text & Chr(34)

rather than

cell.Value = Chr(34) & cell.Value & Chr(34)



In article ,
"Bob Phillips" wrote:

Here is one way with VBA


For Each cell In ActiveSheet.UsedRange
If cell.Value < "" Then
cell.Value = Chr(34) & cell.Value & Chr(34)
End If
Next cell


--

HTH

RP
(remove nothere from the email address if mailing direct)


"Mj" wrote in message
...
I have over 12,000 numbers in 2 columns that I need to add quotes to.

They
need to be before and after each number.