
Where I want to put “abc%LoopIndex%” is not To: but Set:, so I can put that as variables’ names and create multiple variables with one loop
such as abc1, abc2, ... abc1000, <-- 1,000 variables with one loop.
You cannot create variables like this. You can add them to a list and then reference from the list later.
so, create list “ABC”
during Loop, add [whatever] to list %ABC%
then later, you can reference list %ABC% and the index will correspond to the LoopIndex of your first run, so they should match.