Results 1 to 9 of 9

Remove Forbidden Character

Threaded View

  1. #1
    Registered User
    Join Date
    04-18-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    40

    Remove Forbidden Character

    Hello,

    I'm trying to write a UDF that takes the text in a cell and returns text with a list of forbidden characters removed from it. At the moment I have the following:


    Function RemoveForbiddenCharacters(Cell As String)
    
    'Removes All forbidden Characters from a string
    
        Dim i As Long
        Dim TempString As String
        TempString = ""
        For i = 1 To Len(Txt)
            Select Case (Mid(Txt, i, 1))
                Case "&", "/", "\", "-", "|"
                    'Do Nothing
                Case Else
                    TempString = TempString & Mid(Txt, i, 1)
            End Select
        Next i
        RemoveForbiddenCharacters = TempString
    End Function
    code/

    The problem is that the value in the cell comes out as '#NAME'

    I'd be most grateful for any pointers you may have.

    Thanks,
    twills
    Last edited by twills; 02-04-2010 at 08:19 AM.

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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