Column does not belong to underlying table

Hi,
I am scrapping data from from webpage using data scrapping tool and assigning to variable .but while running the code getting attached error.I am not sure that down arrow after resources on webpage causing an error while scrapping data.
can u please check this pics and try to solve my issue.
E1
E2
E3

Thanks

@Mathkar_kunal
sometimes it can happen that the column name are different recognized from data scrapper. Just cross check the set names e.g.:

  • set breakpoint before assign, debug and inspect the datatable var in the locals panel
  • Type datatableVar.Columns into the immediate Box (right from locals panels) and refer to the output

Once the name difference is checked the col name(s) can be adopted

Thanks for reply.sure i will check