

Creator II
2016-12-30
04:36 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Set text string to fixed Length
hi guy
I need to adjust text string to fixed length 10 positions
input
Field
X100XC
X102X
Y200PRO
output :
FixedField
0000X100XC
00000X102X
000Y200PRO
any easy way to do it ?
thanks
gidon
2,375 Views
1 Solution
Accepted Solutions

MVP
2016-12-30
05:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
load
Field,
Repeat('0', 10-len(Field)) & Field as NewField
inline [
Field
X100XC
X102X
Y200PRO
];
1,933 Views
2 Replies

MVP
2016-12-30
05:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
load
Field,
Repeat('0', 10-len(Field)) & Field as NewField
inline [
Field
X100XC
X102X
Y200PRO
];
1,934 Views


Creator II
2016-12-30
05:12 PM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi maxgro
thanks you , it is great
happy new year
gidon
1,933 Views
