Hi krillezzz
I have just been digging about in your code. I think the issue is that you set data to be a single row
I have just been digging about in your code. I think the issue is that you set data to be a single row
DataRow data = result.Tables[0].Rows[i];
System.Diagnostics.Debug.Write(data.Table.Rows[i]["Amortization"]);
Then access a Table within that row and rows within that table. I have tried string val = data[1].ToString();
and that works. string nval = data["Title"].ToString();
Also works