只想选择星期一 10 和星期二 50。
Monday Tuesday Wed
10 40 9
20 50 6
30 70 4
我到目前为止的代码:
For Each row As DataRow In table.Rows
table2.Rows.Add(row(0), row(1))
Next
这增加了周一和周二的所有数据,但我只想要周一的 1 个数据和周二的 1 个数据。?
起初我以为我需要有列,通过添加新行?
For Each row As DataColumn In table.Columns
table2.Rows.InsertAt(newRowb, 0)
table2.Rows.Add(row*(0), row(1))
***getting mixed up with rows and columns, as am having errors on *
Next
但是新行有错误,但是有什么方法可以添加特定数据