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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
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)

1 Solution

Accepted Solutions
tresesco
MVP
MVP

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

Thanks.

View solution in original post

4 Replies
tresesco
MVP
MVP

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