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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Mkumar1631956088
Contributor
Contributor

Numeric Sequence Generate

Hi, I unable to split numeric sequence according to input data example like i have source data

ID

10,

10,

20,

20

i want output with separate numeric sequence if input data changes like

Num,ID

10,10

11,10

12,10

20,20

21,20

30,30 like

Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable

try this expression:

Numeric.sequence(row1.ID+"",row1.ID,1) 

 

 

View solution in original post

2 Replies
Anonymous
Not applicable

try this expression:

Numeric.sequence(row1.ID+"",row1.ID,1) 

 

 

Mkumar1631956088
Contributor
Contributor
Author

Thank you so much, it's working..