How to read Data table having two line column name?

Hi,
I am facing problem in extracting data from data table as,

Coiumn name - “State
Sort in ascending order”
(Column name is in 2 line)
I had used assign activity inside ‘for each row’ loop for extracting value of column

status=row(“State
Sort in ascending order”).ToString

so this activity is showing error because of the name of the column.
Can anyone help in writing this assign activity foe extracting info.?

In for each try it:
row.Item(“columnName”).ToString

Hi,

Can you try the following?

"State"+vblf+"Sort in ascending order"

or

"State"+vbcrlf+"Sort in ascending order"

Regards,

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