Hi I want to trim text between "/" to this characters which match "Department".
Office/Country/Service Operations Division/Customer Service Department/Service Performance and Quality Operations Unit/Service Performance Analyst.
I want to trim full text which include "department" . I want to get full name "Customer Service Department" and write it new custom field
Hi Nodar,
I am assuming the text is in the description but please update as you see fit.
You can do the following:
Cheers,
Patrick Tripodi
GLiNTECH
I tried to do that in object but not working, it doesn't trim department
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also i have case when "Adjarabet/Georgia/Customer Success Division/Customer Acquisition Department/Head of Customer Acquisition Department" there is two department in text, how different department name da position name where is department too
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looks like the split didn't work since it is still showing the /
Maybe we can try creating a variable first of the first audit log smart value, and then in the branch, add {{variableName.split("/")}}. Something to try, I noticed sometimes I had to do this with long smart values in branches.
I assume you are using the same value in the variable as the second audit log.
I am unsure how you could do anything but check that the split does not contain "Head of" as well to only return the one value.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What's the specific outcome you're looking for here? What will the custom field do (i.e why does it need the information)?
Patrick's answer is a good solution, but it feels like you have a specific need here and it isn't quite clear.
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ste Wright ,
this information coming from ACTIVE DIRECTORY, I need to separate it with name, position, division. I need to record the department separately, the division separately, position seperately. in some division doesnt have the department, some departament doesnt have unit, I need to find out where what is written, and type it into the appropriate field.(departament in department, division in division field and etc)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nodar,
How did you go with this? Not sure if you tried my second solution with creating a variable first or not?
Also, if the department, division is in the same spot every time, you can use {{variableName.split("/").get(3)}} (for department) This will get the 4th item in the list, with split() transforming a string into a list.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.