Nessun codice? Ma è così breve, facile e bello e ... :(
Il modello RegEx [^A-Za-z0-9_-]
viene utilizzato per rimuovere tutti i caratteri speciali in tutte le celle.
Sub RegExReplace()
Dim RegEx As Object
Set RegEx = CreateObject("VBScript.RegExp")
RegEx.Global = True
RegEx.Pattern = "[^A-Za-z0-9_-]"
For Each objCell In ActiveSheet.UsedRange.Cells
objCell.Value = RegEx.Replace(objCell.Value, "")
Next
End Sub
modificare
Questo è il più vicino possibile alla tua domanda originale.
Il secondo codice è una funzione definita dall'utente =RegExCheck(A1,"[^A-Za-z0-9_-]")
con 2 argomenti. La prima è la cella da controllare. Il secondo è il modello RegEx da verificare. Se il modello corrisponde a uno dei caratteri nella tua cella, restituirà 1 altrimenti 0.
Puoi usarlo come qualsiasi altra normale formula di Excel se apri l'editor VBA per la prima volta con ALT+ F11, inserisci un nuovo modulo (!) E incolla il codice qui sotto.
Function RegExCheck(objCell As Range, strPattern As String)
Dim RegEx As Object
Set RegEx = CreateObject("VBScript.RegExp")
RegEx.Global = True
RegEx.Pattern = strPattern
If RegEx.Replace(objCell.Value, "") = objCell.Value Then
RegExCheck = 0
Else
RegExCheck = 1
End If
End Function
Per gli utenti che non conoscono RegEx, spiegherò il tuo modello: [^A-Za-z0-9_-]
[] stands for a group of expressions
^ is a logical NOT
[^ ] Combine them to get a group of signs which should not be included
A-Z matches every character from A to Z (upper case)
a-z matches every character from a to z (lower case)
0-9 matches every digit
_ matches a _
- matches a - (This sign breaks your pattern if it's at the wrong position)