If you want to store the two column values in two different variables. Then check the below flow,
→ Use Read range workbook activity to read the excel and store in a datatable called DT.
→ Then create two variables called Date and Created to store the values in those variables.
→ Take two assign activities and write the below expressions,
- Assign -> Date = DT.AsEnumerable().Where(Function(row) row("Type").ToString().Equals("O")).Select(Function(row) row("Date")).FirstOrDefault()
- Assign -> Created = DT.AsEnumerable().Where(Function(row) row("Type").ToString().Equals("O")).Select(Function(row) row("Created")).FirstOrDefault()