I have a data set that I need to have transposed, but the data is grouped. I need to be able to cross N rows at a time. I was thinking of using the sample tool, but sometimes in my actual data set the values below the berries are all the same.
Here is an example of the data that I have currently:
Current Column |
| Strawberry |
| 1 |
| 2 |
| 3 |
| Blueberry |
| 1 |
| 2 |
| 2 |
| Raspberry |
| 1 |
| 1 |
| 1 |
And here is how I want my data to look after the cross tab:
| Current Column | F2 | F3 | F4 |
| Strawberry | 1 | 2 | 3 |
| Blueberry | 1 | 2 | 2 |
| Raspberry | 1 | 1 | 1 |
Is there any combination of tools that will get these results for me?
Thank you!