%20a%20n%C3%BAmeros%20(123)%20en%20Microsoft%20o%20Excel%3F.png)
Tengo una gran cantidad de archivos que se muestran en símbolos (!@##$$@#%@#). Necesito convertirlos a números (12334423523).
Respuesta1
Puedes usarSUBSTITUTE
para reemplazar textos
=SUSTITUIR(SUSTITUIR(SUSTITUIR(SUSTITUIR(SUSTITUIR(SUSTITUIR(SUSTITUIR(SUSTITUIR(SUSTITUIR(SUSTITUIR(SUSTITUIR(A1, "!", "1"), "@", "2"), "#", "3"), "$", "4"), "%", "5"), "^", "6"), "&", "7"), "*", "8"), "(", " 9"), ")", "0")
Pero esa no es una buena manera de reemplazar texto en todos los documentos. En ese caso utilice una macro en su lugar.