Hello again, Almost done with this Flow I'm working on. I have this loop going for each branch where I work, and it builds a table from data extracted that gets emailed, like so :

However, some of those branches will have no data. So I set up an If statement so that if the tablebody is empty, it sends a different email and then ends the loop and goes back to the beginning.

This was working, but the fulltable data was just getting stacked over and over on each loop, because I did not think to clear it after each loop. Oops! So I added this to the end of the loop :

However, now on the 2nd iteration of the loop, the flows dies with this error :

So, how do I clear out the table correctly where I will not get this error? Any help is appreciated as always, much thanks.