Enlever des points dans chiffres excel

7Xman Posted messages 69 Status Membre -  
 AM -
Bonjour,

Je cherche à résoudre un petit problème que j'ai sur un document excel. Il y a dedans une colonne de chiffres, des numéros SIRET pour être plus précis. Et ces numéros ont des points pour séparer les différentes parties. Point que l'on voudrait enlever automatiquement pour éviter de devoir passer sur les cinq milles chiffres.

Je vous remercie d'avance!
Configuration: Windows XP Internet Explorer 7.0

4 answers

dobo69 Posted messages 1720 Status Member 835
 
Hello,
If it's to be done once:
Edit -> Replace and fill:
Find: .
Replace: whatever you want.

Otherwise, you can use a function:
=SUBSTITUTE(A1,"."," ") (replaces all . found in the text of cell A1 with spaces)
--
If you need anything, just ask me.
21
alex54
 
Thank you for this tip and the time saving! With the "SUBSTITUTE" formula, I couldn't get it to work; it gives me 0, but the first method.. perfect!
0
Anonymous user > alex54
 
Hello alex54,

I'm really glad you succeeded with the first method.
The second method indicated by dobo69 is accurate and works well.

If you didn't succeed with this second method, it seems to me that
it must be because of an extra letter T that you might have added:

It's not =SUBSTITUTE(...) but =SUBSTITUE(...)
This is for the French version of Excel, of course!

You can try with this new information, which will help you
later for another exercise if needed.

Best regards. 😊
0
AM
 
Magnificent ... it works :-)
In 2 seconds, 871821528.002.6 becomes 8718215280026
0