Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How can I split 15 digit numeric number??

How can I split 15 digit numeric number??

eg.234879345798375

I want '457' from this number.It is available after 7th digit in number.(required '3' digit after 7th digit)

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

use : mid('yourstring',8, 3 ) .

Thanks.

View solution in original post

4 Replies
tresB
Champion III
Champion III

use : mid('yourstring',8, 3 ) .

Thanks.

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

num#(mid(234879345798375,8,3))


talk is cheap, supply exceeds demand
Not applicable
Author

use this

mid('abcdef',3, 2 ) returns 'cd'.

or

=mid('234879345798375',8,3)

peschu123
Partner - Creator III
Partner - Creator III

Hi Gysbert,

can you tell me the difference of "num" and "num#". I can't see any difference when I compare the 2 commands in Help.

Sorry for talking OT.

Regards,

Peter