Hi I am having an issue with the Tile Tool. I have looked at the examples that come with Alteryx but, I am still having a problem. I am using the Equal Sum option to group records into tiles with equal sums. I have made an example case. Lets say I have a column with the following records in the following order:
x
10
20
30
40
50
60
70
80
Using 4 tiles my expectation would for the output using the x column as my sum field would be as follows. This makes sense to me since the sum of each tile is 90:
x Tile_Num Tile_SequenceNum
10 1 1
80 1 2
20 2 1
70 2 2
30 3 1
60 3 2
40 4 1
50 4 2
However, in the output is actually as follows The sums for tiles 1, 2, 3, and 4 are 100, 50, 130, and 80, respectively. Any reason for this?:
x Tile_Num Tile_SequenceNum
10 1 1
20 1 2
30 1 3
40 1 4
50 2 1
60 3 1
70 3 2
80 4 1