Could anyone help me finding a solution to the problem in a title? Here is a part of code I'm working on. I have no idea why it work in the example marked with yellow and not in cases marked with red.
Thank you in advance for all the help
Solved! Go to Solution.
Us the "As" operator to disambiguate your loops. Since you have nested loops, the ThisRecord will only reference the inner-most loop.
https://powerapps.microsoft.com/en-us/blog/formulas-thisrecord-as-and-sequence/
If I try doing it within one loop the result is the same. I split it trying to look for solutions
Us the "As" operator to disambiguate your loops. Since you have nested loops, the ThisRecord will only reference the inner-most loop.
https://powerapps.microsoft.com/en-us/blog/formulas-thisrecord-as-and-sequence/
Thank you so much, it did the job! So simple...