Level3 assignment1 get transaction data error

level3 assignment1 실행 중에 오류가 발생하였습니다.
처음에는 실행이 잘 되었는데, 중간에 오류가 발생하였습니다.

도움이 필요합니다. 정말 해결하고 싶은 과제입니다.

1 Like

In most programming languages, arrays and lists begin with an index of 0 and end with the total count of items - 1
array[“a”, “b”, “c”]
array.getItem(0) => “a”
array.getItem(3) => Error, index was outside the bounds of the array

So in your case, when dt_WorkItems.Count = 1
dt_WorkItems[“a”]
dt_WorkItems.Rows.Item(1) => Error, index was outside the bounds of the array

Does this help?

3 Likes

https://acme-test.uipath.com/
정보를 리셋 하여 해결하였습니다.

Thanks for replying. :+1:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.