Processing row (for each row) : EmpName (String), EmpSalary(Double), EmpDoB(Date), EmpDoJ(Date)

What “Type Argument” would be required if say row being read as in “For Each Row” has columns to be treated differently like EmpName as String , but EmpDateOfBirth, EmpDateOfJoin as Date and then say EmpSalary as Double !! - would Generic do?

Provided in “Do” we need to process records based some date logic and do some math for salary e.g. read all records and raise certain amount of salary for employees with certain dateofbirth and dateofjoining!!

Hi @keshar1288

it will support generic value based on string and date not double for Employee Sal create system.Double

Thanks
Ashwin S