Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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;
Yes, use RowNo() instead.
HIC
Thank you!