Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEA@tammybrown_tds, how did you figure it out? This is my current dilemma!
@elaineyuan, before you calculate the total distance of each trip, you have to change the stop IDs to an integer data type. If you did a transform to make the trips and stops into a vertical table, the stops are a string data type. So when you do your poly-build and use the stops as the sequence identifier, it sequences them incorrectly (1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 2, 21, 22, 23, etc) instead of (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, etc.)
Once you change the field type to an integer, you'll get the right answer.
Thank you @tammybrown_tds! I appreciate the help.
My solution
My solution
My solution.