Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hey all,
if i have for example this field key: ''1234|Account|Domici"
i want to transform it into 3 field first one :1234
Second one :Account
Third one : Domici
hope u can help
Try this may be:
SubField(FieldKey, '|', 1) as FirstField,
SubField(FieldKey, '|', 2) as SecondField,
SubField(FieldKey, '|', 3) as ThirdField,
see SubField() in help.
Try this may be:
SubField(FieldKey, '|', 1) as FirstField,
SubField(FieldKey, '|', 2) as SecondField,
SubField(FieldKey, '|', 3) as ThirdField,