Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
alec1982
Specialist II
Specialist II

Use of recNo() and Concatenate

hi guys,

I am using recNo() on one of my tables. then i am doing Concatenate to add more data from different table.

Now the recNo() is causing duplicates. Do you know how to make recNo() continue after the last value from the first table.

My script

Table1:

recNo() as ID,

Amount

From ABC;

Concatenate (Table1)

recNo() as ID,

Amount

From XYZ;

1 Solution

Accepted Solutions
hic
Former Employee
Former Employee

Yes, use RowNo() instead.

HIC

View solution in original post

3 Replies
hic
Former Employee
Former Employee

Yes, use RowNo() instead.

HIC

alec1982
Specialist II
Specialist II
Author

Thank you!