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:
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.
Question
bbeshlian
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:
Desired State:
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
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.