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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

identfiy missing numbers in a series

hi i have the following scenario

i load in a list of article numbers between a intervall 1-10.

1

2

4

6

8

9

is there anyway in Qlikview you can identify that the missing numbers in the series?

ie. 3, 5, 7,10

Best

Brad

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

Several ways would be there. You can try something like:

Load

          YourData,

          If(RowNo()<>YourData, RowNo()) as MissingData

From  <>  ;

You might have to add some offset value to Rowno()/RecNo() if the data is not starting with 1.

View solution in original post

3 Replies
tresB
Champion III
Champion III

Several ways would be there. You can try something like:

Load

          YourData,

          If(RowNo()<>YourData, RowNo()) as MissingData

From  <>  ;

You might have to add some offset value to Rowno()/RecNo() if the data is not starting with 1.

Not applicable
Author

Thanks for the advice works great.

regarding offset.

for example with the value starting from 1001, how is the offset set in the script?

Best,

Brad

tresB
Champion III
Champion III

then try this:

Load

          YourData,

          If((RowNo()+1000)<>YourData, (RowNo()+1000)) as MissingData

From  <>  ;