I have written a program to apportion seats using Hamilton's Method of Apportionment. In the program I store data in lists using a FOR-NEXT loop, using the index of the loop to place each population into the list.
For 1-> A to C
"STATE POP"?->List 1[A]
Next
I would like the display to ask: STATE 1 POP?
The 1 would come from the loop index. Is there a way to include the loop index in the display?
Thanks for any help.