Jump to content
  • 0

Parsing a Field


bbeshlian

Question

Hello,

I have a field named Code_Description and I want to parse the code into a separate field. The contents of the field are separated by an "_".

Current State:

Code_Description
CDL_Commercial Drivers License

Desired State:

Code Code_Description
CDL CDL_Commercial Drivers License

I modified a piece of code that was shared with me when I asked about parsing a comma separated filed. The code validates but nothing is returned. Here is the modified code:

IsNull(Left([@field:Code_Description],(Patindex('%_%', [@field:Code_Description])-1)),' ')

Any thoughts? Thanks in Advance.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Hi,

As I understand your workflow, you want to extract the text "Code" in the word "Code_Description", right? If that is the case, you may try this formula:

SUBSTRING([@field:Code_Description],0, CHARINDEX('_',[@field:Code_Description]))

On 7/26/2019 at 10:46 AM, bbeshlian said:

Hello,

I have a field named Code_Description and I want to parse the code into a separate field. The contents of the field are separated by an "_".

Current State:

Code_Description
CDL_Commercial Drivers License

Desired State:

Code Code_Description
CDL CDL_Commercial Drivers License

I modified a piece of code that was shared with me when I asked about parsing a comma separated filed. The code validates but nothing is returned. Here is the modified code:

IsNull(Left([@field:Code_Description],(Patindex('%_%', [@field:Code_Description])-1)),' ')

Any thoughts? Thanks in Advance.

 

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...