+ Reply to Thread
Results 1 to 4 of 4

move a special character

  1. #1
    Mark
    Guest

    move a special character

    Hi,
    Anyone knows how to move a small
    rectangle character out from excel cell.
    Please see attached file, real file contains
    more than 8000 records.
    Thanks,

    --
    Mark





  2. #2
    Mike Q.
    Guest

    RE: move a special character

    =clean(A1)
    Drag formula down as far as nessary
    Then Copy & PasteValue to a new spreadsheet
    --
    Mike Q.


    "Mark" wrote:

    > Hi,
    > Anyone knows how to move a small
    > rectangle character out from excel cell.
    > Please see attached file, real file contains
    > more than 8000 records.
    > Thanks,
    >
    > --
    > Mark
    >
    >
    >


  3. #3
    Peter T
    Guest

    Re: move a special character

    Hi Mark,

    Those little squares normally represent an unprintable character such as a
    carriage return. But in your attached file are a vertical tab chr(11), and
    according to help not used in Excel.

    You could use the Clean fuction as suggested by Mike Q, but that might also
    remove other unprintable characters you want to keep.

    Try this having saved a backup -

    Sub RemVtabs()

    Cells.Replace What:=Chr(11), Replacement:="", _
    LookAt:=xlPart, SearchOrder:= _
    xlByRows, MatchCase:=False
    End Sub

    Regards,
    Peter T





    "Mark" <[email protected]> wrote in message
    news:#[email protected]...
    > Hi,
    > Anyone knows how to move a small
    > rectangle character out from excel cell.
    > Please see attached file, real file contains
    > more than 8000 records.
    > Thanks,
    >
    > --
    > Mark
    >
    >
    >




  4. #4
    Mark
    Guest

    Re: move a special character

    Thanks,
    Mark




    "Mark" <[email protected]> wrote in message
    news:%[email protected]...
    > Hi,
    > Anyone knows how to move a small
    > rectangle character out from excel cell.
    > Please see attached file, real file contains
    > more than 8000 records.
    > Thanks,
    >
    > --
    > Mark
    >
    >
    >




+ 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