Iterating through an Associative Array Using a For Loop with an Empty While Condition Not Working
I got advice largely from Looping through an Associative Array's elements on how to iterate through associative arrays. My understanding is that the iterator iterates over the keys, not the values, but that you can easily access the values gives that you have the array.
My code is below.
Names Default To Here(1);
dt1 = Open("file path" );
dt2 = Open("file path 2");
Summarize(dt1, IDs = by(:ID)
...