Forum Discussion
NisHera
10 years agoValued Contributor
Best way is to use Xl diver comes with TestCompleate as follows
DDT.ExcelDriver("C:\\YourData.xlsx","Sheet01",true);
do
{
YourVariable = DDT.CurrentDriver.Value('Column01');
//do something with YourVariable
DDT.CurrentDriver.Next();
}
while (!(DDT.CurrentDriver.EOF()));
DDT.CloseDriver(DDT.CurrentDriver.Name);