Jump to content
  • 0

Cell's Text with Apostrophes


Esraaa

Question

Hello,

I am trying to do a function to remove and replace some special characters from a text field using formula DataType, However, how can I remove the apostrophes (') 

 

Here is the formula (Last one with apostrophe)

CASE
WHEN Charindex('!',[@field:TITLE],0) <> 0 THEN Replace([@field:TITLE], '!', '')
WHEN Charindex('#',[@field:TITLE],0) <> 0 THEN Replace([@field:TITLE], '#', '')
WHEN Charindex(':',[@field:TITLE],0) <> 0 THEN Replace([@field:TITLE], ':', '')

WHEN Charindex(''',[@field:TITLE],0) <> 0 THEN Replace([@field:TITLE], ''', '')
END 

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
13 hours ago, Esraaa said:

Hello,

I am trying to do a function to remove and replace some special characters from a text field using formula DataType, However, how can I remove the apostrophes (') 

 

Here is the formula (Last one with apostrophe)

CASE
WHEN Charindex('!',[@field:TITLE],0) <> 0 THEN Replace([@field:TITLE], '!', '')
WHEN Charindex('#',[@field:TITLE],0) <> 0 THEN Replace([@field:TITLE], '#', '')
WHEN Charindex(':',[@field:TITLE],0) <> 0 THEN Replace([@field:TITLE], ':', '')

WHEN Charindex(''',[@field:TITLE],0) <> 0 THEN Replace([@field:TITLE], ''', '')
END 

Hi Esraa,

Try using the following syntax:

WHEN Charindex('''',[@field:TITLE], 0) <> 0 THEN Replace([@field:TITLE], '''',' ') 

Hope that helps

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...