Hello,
I'm currently working on implementing a nested "for each" loop in my project. I have two lists that will store invoicing text and invoicing amounts, each containing up to 10 entries. My goal is to iterate through these lists and utilize the stored variables within our third-party software, combining each text entry with its corresponding amount (e.g., Text1 + Amount1, Text2 + Amount2, and so on).
However, I've encountered an issue with my current approach. It doesn't iterate correctly; instead, it begins with the first text entry and then loops through all the amounts before moving on to the next text entry and repeating the process for all amounts, and so forth.
Thanks for your assistance
Brg
