I have a list of zip codes with corresponding territories but what I need is a territory and the corresponding min max zip code range for all territoies and zip values. For example:
| Zip | Terr |
1 | T1 |
| 2 | T1 |
| 3 | T1 |
| 4 | T2 |
| 5 | T1 |
| 6 | T1 |
| 7 | T1 |
would return
| Terr | Zip Start | Zip End |
| T1 | 1 | 3 |
| T2 | 4 | 4 |
| T1 | 5 | 7 |
Thought Tile would work but I played around with a few settings and had no luck. I was able to use a multi row formula to tell me if the zip code had the same territory as the row above it which I think is on the right track but I'm pretty sure there may be a better way.
Thanks!