Been wracking my brain over this for a while now.
I have a need to iterate over a set of variables (Named “TGSS_Group X” where X is a number). I’ve tried a number of things, none of which seem to work. Each of these variables (which are created/destroyed – haven’t got to that point yet – arbitrarily by the user) contains a string that will be used elsewhere. They come in via a user prompt. I’m trying to either do a for each over them (that seemed to be a dead end) or recombine them into a comma-separated single variable so I can iterate over that.
Closest I’ve come is a while loop that decrements a number and puts that number into a temp variable using “TGSS__Group %TGSS__GroupNumIterate%”, but using the temp variable doesn’t fully resolve all the way to the actual data I need.
Basically I need pointers, for you C coders out there. >.< Or a way for a prompt to output to a single variable as an array! Either works. Any ideas?