View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student
 
Posts: n/a
Default questions re quotes and csv

If you don't mind visual basic then enter the following macro:

Sub dont_quote_me()
Dim r As Range
For Each r In Selection
r.Value = Chr(34) & r.Value & Chr(34)
Next
End Sub

Then select an area in the worksheet and run the macro.
--
Gary's Student


"Sgt.DA" wrote:


is there a way to put all my cells in quotes without manually editting
each one?

thanks in advanced
DA


--
Sgt.DA
------------------------------------------------------------------------
Sgt.DA's Profile: http://www.excelforum.com/member.php...o&userid=27281
View this thread: http://www.excelforum.com/showthread...hreadid=524473