Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
how can I write the script, if i want to remove the spaces in the field?
Example:
| Field |
|---|
| (London ) |
| (London) |
| (Paris ) |
| (Paris) |
Many thanks
Hi Andy,
Use below code.
text(trim(purgechar(Field, ' ')))
Hi,
Trim(Subfield(FieldName,')',1))&')' as FieldName
It might helps you.
Best of luck
Hi,
have you tried TRIM function ?
Load *,
Trim(Field) as FieldTrim
From ....
Hope it helps
Giampiero
Many Thanks