I've created a flow that builds a table (8 columns x 20 rows) from web data. I'm now trying to build a loop that looks at the first cell of each row to evaluate the contents.
However, I cannot seem to find a structured reference for the loop that doesn't generate a syntax error.
If I try, "For each %CurrentItem% in %DataFromWebPage%" I get 20 iterations, which is what I want. However, within the loop, I don't seem to be able to use the %CurrentItem% variable as part of a structured reference. %DataFromWebPage[0][0]% gives me the first row, first column. But, I can't find a way to embed a reference to %CurrentItem% to bring my looping construct into the loop. What's the right syntax for embedding a variable reference within a variable reference? I want something like %DataFromWebPage[%CurrentItem%][0] and I get why that doesn't work, but I can't find an escape character that allows me to do the embedded declaration ... any advice?
Sorry if this is a dumb question ...