Why 'For Each Row in Data table' cannot work

Hi!
I have a problem

I’d like to know why ‘For Each Row in Data table’ cannot work
Even though it had worked before.
and this ‘For Each Row in Data table’ is under Retry scope

Main.xaml (783.0 KB)

Hi @Nattawadee_Srisai ,

Please post your error message or log here to review

Thanks

Are you getting an error message? Are there rows in DTNotApproved?

hi @Nattawadee_Srisai ,
Have you checked this data table, is it blank? → check by data.rowcount()
or you can write it to csv or excel file see it
this ‘for each’ inside ‘If’, check test.xlsx
image
then before ‘for each’ you can check it after process with it


you can check by

regards,

there is no any error message
it just skip this for each row in data table

there is no any error message
it just skip this for each row in data table

If your DtNotApproved data table is empty then it’s not executed the for each row in data table. So before going to loop… Verify the Datatable it’s contains the data or not

@Nattawadee_Srisai

Hi @Nattawadee_Srisai

Add a break point at for each row in datatable and run it in debug mode then see in locals panel if your DataTable has values

Cheers