+ Reply to Thread
Results 1 to 4 of 4

Macro to add prefix and suffix to cell

Hybrid View

  1. #1
    Registered User
    Join Date
    02-25-2013
    Location
    Ohio
    MS-Off Ver
    Excel 2010
    Posts
    2

    Macro to add prefix and suffix to cell

    Here is the situation...

    I have a set of numbers (Excel 2010), but for reasons I have no control over, they are to be formatted as text. I need to add an ' to the beginning and a ', to the end of each, so that I can copy and paste the list into a SQL query and they will be seen as text and not numbers.

    Sample: " 999999999 " becomes " '999999999', " (without the spaces of course)

    I tried this:

    Sub Add_Apostrophe()

    Dim r As Range

    With Selection

    For Each r In Selection
    r.Value = "'" & r.Value & "',"
    Next

    End With

    End Sub


    However, when I copy and paste the list into SQL Developer, it only sees the ending and not the beginning. I have also tried a custom format, "'"@"'," and that does not work either. Ideas??

  2. #2
    Registered User
    Join Date
    02-25-2013
    Location
    Ohio
    MS-Off Ver
    Excel 2010
    Posts
    2

    Re: Macro to add prefix and suffix to cell

    Nevermind all... I figured it out. END THREAD

  3. #3
    Registered User
    Join Date
    02-20-2013
    Location
    Monterrey, Mexico
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Macro to add prefix and suffix to cell

    Did you try adding other ' in the code?

    For Each r In Selection 
    r.Value = "''" & r.Value & "'," 
    Next

  4. #4
    Registered User
    Join Date
    02-20-2013
    Location
    Monterrey, Mexico
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Macro to add prefix and suffix to cell

    so, nevermind with my answer, hahaha

+ 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