Forum Discussion
TanyaYatskovska
Alumni
11 years agoHi Ganapati,
The approach you can use depends on how you read data from Excel. If you are using DDT, something like this will work:
DDT.ExcelDriver("C:\\MyFile.xls", "Sheet1");
while (! DDT.CurrentDriver.EOF())
{
If DDT.CurrentDriver.Value(0)=="Male"
// Perform something
DDT.CurrentDriver.Next();
}