Assign error (read data)

I use assign for read data excel.
I want to read data(row) that column Type = Error

image

dt_temp as dataTable
in_dic_email.Select("[Type]=“Error”).copyToDataTable

image

Please guide me for solve it.
Thank you.

Please guide me for solve it.

Hi @Stef_99

Can you specify what are you trying to do, what is the datatype of in_dic_email.

or try this @Stef_99

dt_temp = in_dic_email.Select("[Type]='Error'").CopyToDataTable

Regards

1 Like

Hi @Stef_99

Try this

dt_temp = in_dic.email.Select("[Type]='Error'").CopyToDataTable()

Cheers!!

1 Like

@vrvariable in_dic_email as dataTable

Hi @Stef_99

Try this:
dt_temp = in_dic_email.Select("[Type]='Error'").CopyToDataTable

Regards

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.