You specified the Column name as Org in the Lookup datatable activity but in your datatable there is no column called Org. The Column names are as rows in your datatable.
Are you using any read range workbook activity to read the excel, if yes then check the add header option in the properties and try.
Give the proper column name in the Lookup datatable activity and try.
I can help you with this.
Read Range start your range at the correct cell Maybe it should be A4.
if you have to read it from the top, you can use indexes.
You see there are some properties on the right,
you need to give Lookup column as 0
and Target Column as 4.
And then check your output variables.
You should have your desired value.
Lookup value should be like: DataTableName.Rows(0)(columnIndex).toString.Trim
Here columnIndex means the column in which your value would be present.
You given the Org and Division in the Column Names right. But if you print and see your datatable variables it shows the column names are like Column0, Column1, Column2 like this.
That’s why it was throwing error, it could not find the Org and Division columns in the datatable because the datatable has Column0, Column1 and Column2.