Please add a RowCount property to DDTDriver object
Please add a RowCount property to DDTDriver object. At the moment, there is only ColumnCount property available and the only way how to get the row count seems to be using below code:
let csvRowCount=0;
DDT.CSVDriver("c:\\path\\to\\file.csv");
while (!DDT.CurrentDriver.EOF())
{
csvRowCount++
DDT.CurrentDriver.Next();
}
Thanks for the attention! 😉
See more ideas labeled with:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.