+ Reply to Thread
Results 1 to 2 of 2

numbers to characters

  1. #1
    George Applegate
    Guest

    numbers to characters

    I have a spreadsheet that is externally linked to a query. In four
    colums are phone number information - area code, number, fax area code
    and fax number. When the data is imported, some of the fields are
    zero. I can format the column that if it's zero to show blank by
    using a custom edit code. But...the number is still there, and zero,
    even if it doesn't display as such.

    Of course I can also do a find/replace on the four columns, but I'd
    like to figure out a way that when the data comes in it automatically
    replaces any cells in these four columns that have a zero with blanks.
    Like the cell contains no data at all.

    Is there a way to accomplish this?

    thanks,
    ga
    George Applegate
    gappleg8@fmctc.com

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    This simple VBA code should do it

    Could make it a Event producre or just add a macro button. It assumes data starts in "A1".


    Sub Remove_zero()
    '
    Range("A1").Select
    Selection.CurrentRegion.Select
    Selection.Replace What:="0", Replacement:=""
    Range("A1").Select
    End Sub

    VBA Noob

+ 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