Forum Discussion
megha_gambhire
12 years agoContributor
hi Mughees Siddiqui ,
Yoour solution..display a single count. for n number of rows.
if i uses
Yoour solution..display a single count. for n number of rows.
if i uses
row = 2
Driver = DDT.ExcelDriver (excel path ..)
while (! Driver.EOF())
{
//process datato read ..here i want to rea only added daata in the rows.if the file has 4 rows.. i want to read only 4 data.
I wan tto read from second row. So i defiened
row = 2
}
Driver.Next(); // Goes to the next record
row++;
}
But when few of the data row from excel get reoved, it still start to read the blank data.
This is my problem.
Any one has solution ?