Hello Alteryx Community,
Is it any way to make a tile tool NOT case sensitive?
I have a data with duplicated names, however I cannot delete duplicates. I thought that I will add suffix "_" to the name if there is (one or more) duplicates. I use Tile tool first and then formula tool to add suffix, the problem is that Tile works like:
| Name | Tile_Num | Tile_SequenceNum |
| AA AAA | 1 | 1 |
| AA AAA | 1 | 2 |
| AA Aaa | 2 | 1 |
and I would expect:
| Name | Tile_Num | Tile_SequenceNum |
| AA AAA | 1 | 1 |
| AA AAA | 1 | 2 |
| AA Aaa | 1 | 3 |
Is it a better way to receive output from the second table?
Thank you in advance,
Marcin