how to substitute double quotes in a field?
SUBSTITUTE([COLUMN],โtext to searchโ,โtext to replaceโ)
column:
columnname
text to search is (") double quotation mark
"
text to replace(exclamation mark)
!
I tried 3 double quotes("""), but still gets errorโฆ
how to do this, or is there any work around available?
Sample
SUBSTITUTE([NAME],""","!")
Example field:
ALPHA-"-BETA
Expectation:
ALPHA-!-BETA
comments are welcome
Solved! Go to Solution.
@prashgames
How about this:
SUBSTITUTE([NAME],"_"_","_!_")
Expression โSUBSTITUTE([NAME],""","!")โ could not be parsed due to exception: Unterminated string.
Try:
SUBSTITUTE([NAME], '"', "!")
SUBSTITUTE([Instagram Name],โ"โ, โโ!")
SUBSTITUTE([Instagram Name],โ"""โ, โโ)
both above format worksโฆ (โ " ') & (" โโ ")
User | Count |
---|---|
17 | |
11 | |
5 | |
5 | |
5 |