Hi,
I have a table for example:
Name | Active | StartDate |
a | 0 | 1990-19-02 |
a | 1 | 1990-20-05 |
b | 1 | 1990-20-05 |
... | ... | ... |
I want to add a new column to include the record # as RecordID. I tried with generate row tool. But it replicating with respect to the row and condition expression. I also can not delete condition expression. The result from generate row tool with RowCount <= 2 condition expression:
Name | Active | StartDate | RowCount |
a | 0 | 2016-11-07 | 1 |
a | 0 | 2016-11-07 | 2 |
a | 1 | 2016-11-25 | 1 |
a | 1 | 2016-11-25 | 2 |
... | ... | ... | ... |
Or I do not know how to use it may be.