Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a question, i have a field that has the value like 'Hilary/12yo' i want to separate this data into two fields, let's say Name and Age. i want to cut the value when meet the '/' symbol and put 'Hilary' into Name field and put '12yo' into Age field. Does anybody know the function to separate the value ?
Really need your help, your comments and view are really appreciated.
Thanks
If you are trying to do it in script, you can try this:
LOAD Fields,
SubField(YourField, '/', 1) as Name,
SubField(YourField, '/', 2) as Age,
From abc
HTH
Best,
Sunny
If you are trying to do it in script, you can try this:
LOAD Fields,
SubField(YourField, '/', 1) as Name,
SubField(YourField, '/', 2) as Age,
From abc
HTH
Best,
Sunny
Attaching a sample for reference.
Hi Sunindia,
Thanks for your help. It works and solve my problem.