I followed the steps exactly but I’m not sure why only C2 is being written in and not incrementing to the next row.
Input Methods and Input Activities.zip (637.9 KB)
I followed the steps exactly but I’m not sure why only C2 is being written in and not incrementing to the next row.
Input Methods and Input Activities.zip (637.9 KB)
Hi @wendy.xiongm
I was not able to run your flow, but could analyze it.
Here is what is happening in my view:
Do this instead:
Hope this helps.
Regards
Sonali
Hey @wendy.xiong
The issue is that although RowNumber is initialized with the value 1, its scope is set to Body, meaning it’s recreated from scratch in every loop iteration. As a result, the assignment RowNumber = RowNumber + 1 doesn’t persist between rows, and the value keeps resetting to 1.
That’s why the data is always written to the same cell, C2. To fix this, simply change the scope of the RowNumber variable from Body to Do, so that the incremented value is remembered across iterations.
Input Methods and Input Activities (2).zip (639.6 KB)
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.