Get Row Item: Column 'SECONDS' does not belong to table ."

@Shiva_Chander1,

Is ‘SECONDS’ is the column name in your excel file ?

Are you using this Get Row Item activity inside For Each Row activity or not ?

Hope you checked Add Headers property in Read Range activity.

1 Like

Hi @Shiva_Chander1,

To get row item, you can directly use datatable.rows(1).item(“Columnname”).tostring

So Rows(1) - represents Second row.
Item(“Columnname”) or item(index of seconds column) - Represents Seconds column

The above expression returns value under seconds column from the second row.

2 Likes

Thank you will try and update.


Am experiencing a new error when i try to open my project for execution.

Yes i included the Get Row Item