I want to know the number of rows in the data table

I want to know the number of rows int th data table dt_Titlelsit.
How could i do?

데이터 테이블 dt_TitleList에 있는 행의 개수를 구하는 방법을 알고 싶습니다.

@a01031749859

You can use dt_titlelist.rows.count or dt_titlelist.Rowcount

Cheers

1 Like

Hi @a01031749859

use a Write Line activity and write as dt_Titlelsit.Rows.Count, this will display the count in Output panel

OR

You can declare a Int32 variable and the same as above to store the count in an variable

Hope this may help you

Thanks,
Srini

1 Like

You can use an assign with value = dt_Titlelait.RowCount
Remember that the type must be integer

1 Like