+ Reply to Thread
Results 1 to 3 of 3

questions re quotes and csv

  1. #1
    Registered User
    Join Date
    09-15-2005
    Posts
    2

    questions re quotes and csv

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

    thanks in advanced
    DA

  2. #2
    Gary''s Student
    Guest

    RE: questions re quotes and csv

    If text is in F19, then:

    ="""" & F19 & """" will give you the text with double quotes before and
    after.
    --
    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
    >
    >


  3. #3
    Gary''s Student
    Guest

    RE: 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
    >
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1