+ Reply to Thread
Results 1 to 3 of 3

how do I insert an ' in front of many rows of numbers?

  1. #1
    jszuch
    Guest

    how do I insert an ' in front of many rows of numbers?

    I have a column of numbers 1,800 rows long that needs an ' in front of every
    row. How do I do this?

  2. #2
    Tom Ogilvy
    Guest

    Re: how do I insert an ' in front of many rows of numbers?

    Sub MakeText()
    Dim cell as Range
    for each cell in Range("F1:F1800")
    cell.Formula = "'" & cell.Text
    Next
    End Sub

    --
    Regards,
    Tom Ogilvy

    "jszuch" <[email protected]> wrote in message
    news:[email protected]...
    > I have a column of numbers 1,800 rows long that needs an ' in front of

    every
    > row. How do I do this?




  3. #3
    Bob Phillips
    Guest

    Re: how do I insert an ' in front of many rows of numbers?

    See response in .misc

    --

    HTH

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


    "jszuch" <[email protected]> wrote in message
    news:[email protected]...
    > I have a column of numbers 1,800 rows long that needs an ' in front of

    every
    > row. How do I do this?




+ 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