데이터테이블 관련 질문입니다

데이터테이블의 인덱스 번호로 인덱스행의 전체를 가져올수있을까요?

데이터테이블.Rows(인덱스번호) 하면 해당 인덱스 행 하나를 통째로 받아올 수 있습니다.
행 하나가 통째로 Datarow 타입으로 나옵니다.

1 Like

답변 감사합니다 !

Hi @Gil777

Welcome to Uipath community

You can use this :

[your DataTable variable].Rows.IndexOf(row)

which [row] is defined as the row of [your DataTable variable] in [for each row ] activity .

Regards
Gokul

2 Likes

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