J'utilise une macro pour convertir du texte en nombre, cela marche très bien jusqu'à ce que ma formule bute sur une cellule qu'elle ne peut pas convertir au format nombre. j'ai donc un message d'erreur "incompatibilité de type". J'aimerai savoir comment ignorer les cellules concernées par cette erreur.
Voici le code :
Sub cnum()
For Each cell In Selection
If Application.IsText(cell.Value) Then
cell.Value = CDbl(cell.Value)
End If
Next
End Sub
Sub cnum()
For Each cell In Selection
If Application.IsText(cell.Value) Then
On Error Resume Next
cell.Value = CDbl(cell.Value)
On Error GoTo 0
End If
Next
End Sub
Sub cnum()
For Each cell In Selection
If Application.IsText(cell.Value) Then
On Error Resume Next
cell.Value = CDbl(cell.Value)
On Error GoTo 0
End If
Next
End Sub
Sub cnum()
For Each cell In Selection
If Application.IsText(cell.Value) Then
On Error Resume Next
cell.Value = CDbl(cell.Value)
On Error GoTo 0
End If
Next
End Sub