Is it possible to delete a character "using an Excel formula?
I tried REPLACE function like this
REPLACE(<sometext>, """, "")
and this one
REPLACE((<sometext>, char(34), "")
but that will not work.
NB: I am using the Polish version of Excel, so it is likely that the syntax is different from the English version. For example, in Polish formulas we use ;instead ,as a separator of arguments.
source
share