I am studying my teammate alteryx program, there have two tables
one is look like this:
| id | amount | count |
| 1 | 123 | 1 |
| 2 | 567 | 1 |
| 2 | 321 | 1 |
and he just selected the unique id, then the table become like this:
and one is look like this:
After he use the "append fields" to combine two table, the output should be like this right:
| id | count | viollation |
| 1 | 2 | Y |
| 1 | 2 | N |
| 2 | 2 | Y |
| 2 | 2 | N |
But don't know why, the output is look like this:
Can anyone tell me whats going on? Thanks.