Write cell activity failed

Hi there,

I retrieve a table from the queue which was serialized. I deserialize it into datatable.
Then i am using the datatable to write cell using for each row in datatable to write in specific cells. However when i write cell from the datatable e.g. row(“name”).Tostring, it throws error and say it cannot match the datatable name.

@mark_rajkumar1,

Show us how you are configuring the activity.
Also check the column names you are trying to specify.

We normally use

row.Item("column name").ToString

To get specific cell value from the Datatable

Hi @ashokkarale the reason why i could not write is due to me not adding item in the syntax am i right?

@mark_rajkumar1,

Yes, that’s what I think. Try using this expression.

row.Item("column name").ToString

@mark_rajkumar1

Can you check in locals panel if the datatable contains data

Cheers

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