I have file excel as below.
If I want to read data column B that header (column A = Type)
Please guide me for solve it.
Thank you.
I have file excel as below.
If I want to read data column B that header (column A = Type)
Please guide me for solve it.
Thank you.
@Parvathy expect output in column B
Hi @Stef_99
Your output should be like for Type
the value should be a
. Is my understanding right?
Regards
@Parvathy Yes. Correct
Hi @Stef_99
Steps to read data from column B based on data in column A:
row("ColumnName")
syntax to access the value in column A for the current row.For example:
Hi @Stef_99
=> Read Range Workbook. Make sure to Remove Add Headers option in properties Panel of Read Range Workbook.
Output-> dt
=> Use below syntax in Assign:
Output = dt.AsEnumerable().Where(Function(row) row(0).ToString() = "Type").Select(Function(row) row(1).ToString()).FirstOrDefault()
Check the below image for better understanding
Hope it helps!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.