
Creator
2019-10-16
06:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Cut string on the right side
Hi!
Does anybody knows how ich can cut the right side of a string in qlikview.
For Example i habe the niumver 12683001. I want cut only the last 3 signs so that the new strings look like 12683
Thank you for your help.
Best regards
Roland
1,549 Views
1 Solution
Accepted Solutions


Partner - Master
2019-10-16
06:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
if the number of digits always the same you can say
left (niumver ,5) as niumver5
otherwise
left(niumver ,len(niumver)-3) as niumver_new
regards
2 Replies


Partner - Master
2019-10-16
06:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
if the number of digits always the same you can say
left (niumver ,5) as niumver5
otherwise
left(niumver ,len(niumver)-3) as niumver_new
regards

Creator
2019-10-16
08:12 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you very much!
1,518 Views
