月曜日 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
新しい行でエラーが発生しましたが、特定のデータを追加する方法はありますか