Multiple column Excel processing

How to iterate multiple column excel and get one specific column from there ? where to use the for each loop? seeking your expertise advise pls

@Sathish_Ashokan

  1. Read range into dt
  2. For each row indatatable on dt for each row
  3. If you want the column use for each activity with dt.Columns
  4. Inside loop currentrow(currentitem.ColumnName) will give eqch row and then each column in it…

Cheers

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.