Getting rows without column names

Hi, please suggest any possible means I can get rows like the first row content, second row in that order without the column name

dt.rows(0)(0)
Can you try by using numbers instead of Column names.

2 Likes

I have tried but the output is showing system.data.datarow

Can you send sample Xaml with Datatable and the answer you need.

@stanstilo, As @Priyanka_Ramesh rightly mentioned try t.Rows(0)(0) where first 0 is index.
E.g. dt.Rows(0) will return DataRow but st.Rows(0)(0) will return value of first column from first row.

Hope it make sense.

Cheers :slight_smile:

1 Like

Didn’t work, returning empty image

Try Output data table and Print Data table if possible . And can you share that screenshot