
Creator II
2018-08-09
03:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Right, Left , Mid Functions ??
Hi All,
I have a repair order column in my table which contains order like--000005054300,
From this i want a number without leading 0 and without last 4 digits. i want to do this in front end.
please help me.
jyothish8807qlikviewwizardstalwar1
Thanks,
Ramesh
1,529 Views
5 Replies

Creator
2018-08-09
03:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
=mid(ID,2,Len(ID)-5)
where 'ID' is your field.
1,437 Views

MVP
2018-08-09
03:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
= left(num( '000005054300'),Len(num( '000005054300'))-4)

Champion
2018-08-09
03:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this,
Num(Mid(FieldName,1,Len(FieldName)-4))

Creator II
2018-08-09
03:23 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi , Can you elaborate this Expression ?
1,437 Views

Creator
2018-08-09
03:29 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
it gets the string from second letter for number of letters in original string, minus 5 (because, we started with second letter and you do not want 4 last letters).
For details go to Qlik Help:
1,437 Views
