I have to copy/paste many data from pdf to excel. Unfortunately, the format is always in text and I can't convert it despite my formula.
Here is the example :
Do you have an idea to handle this?
Thanks!
I have to copy/paste many data from pdf to excel. Unfortunately, the format is always in text and I can't convert it despite my formula.
Here is the example :
Do you have an idea to handle this?
Thanks!
You also have to consider space after first two digit 16 000,00 €
. So, substitute space as well. Comma and semicolon depends on region.
=--SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,",",""),"€","")," ","")
If space is not regular space in case of Char(160)
then use.
=--SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,",",""),"€",""),CHAR(160),"")