質問編集履歴
2
url文字列にリンクを張りました。希望する結果の具体例を示しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
[
|
1
|
+
[https://hironimo.com/prog/vbnet/dataview/](https://hironimo.com/prog/vbnet/dataview/)
|
2
2
|
|
3
3
|
|
4
4
|
|
@@ -12,7 +12,61 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
+
例)データテーブル
|
16
|
+
|
17
|
+
name old height
|
18
|
+
|
19
|
+
ひろ 10 100
|
20
|
+
|
21
|
+
ひろ 10 110
|
22
|
+
|
23
|
+
ひろ 10 120
|
24
|
+
|
25
|
+
ひろ 10 130
|
26
|
+
|
27
|
+
ひろ 10 140
|
28
|
+
|
29
|
+
ひろ 20 150
|
30
|
+
|
31
|
+
ひろ 20 160
|
32
|
+
|
33
|
+
ひろ 20 170
|
34
|
+
|
35
|
+
ひろ 20 180
|
36
|
+
|
37
|
+
ひろ 20 180
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
Dim dtView As DataView
|
42
|
+
|
43
|
+
dtView = New DataView(dt)
|
44
|
+
|
45
|
+
dt = dtView.ToTable(True, {"name", "old"})
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
結果
|
50
|
+
|
51
|
+
name old
|
52
|
+
|
53
|
+
ひろ 10
|
54
|
+
|
55
|
+
ひろ 20
|
56
|
+
|
57
|
+
|
58
|
+
|
15
|
-
し
|
59
|
+
希望している重複削除後の表示は3列のままにして、しかも下側の行を残すことです。
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
希望する結果
|
64
|
+
|
65
|
+
name old height
|
66
|
+
|
67
|
+
ひろ 20 180
|
68
|
+
|
69
|
+
ひろ 10 140
|
16
70
|
|
17
71
|
|
18
72
|
|
@@ -20,4 +74,44 @@
|
|
20
74
|
|
21
75
|
|
22
76
|
|
77
|
+
例)height降順並び替え
|
78
|
+
|
79
|
+
name old height
|
80
|
+
|
81
|
+
ひろ 20 180
|
82
|
+
|
83
|
+
ひろ 20 180
|
84
|
+
|
85
|
+
ひろ 20 170
|
86
|
+
|
87
|
+
ひろ 20 160
|
88
|
+
|
89
|
+
ひろ 20 150
|
90
|
+
|
91
|
+
ひろ 10 140
|
92
|
+
|
93
|
+
ひろ 10 130
|
94
|
+
|
95
|
+
ひろ 10 120
|
96
|
+
|
97
|
+
ひろ 10 110
|
98
|
+
|
99
|
+
ひろ 10 100
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
重複の削除でnameとoldの2列を選択する
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
希望する結果
|
108
|
+
|
109
|
+
name old height
|
110
|
+
|
111
|
+
ひろ 20 180
|
112
|
+
|
113
|
+
ひろ 10 140
|
114
|
+
|
115
|
+
|
116
|
+
|
23
117
|
これをVB.NET(言語VB)でできる方法を教えて下さい。
|
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
https://hironimo.com/prog/vbnet/dataview/
|
1
|
+
[リンク内容](https://hironimo.com/prog/vbnet/dataview/)https://hironimo.com/prog/vbnet/dataview/
|
2
2
|
|
3
3
|
|
4
4
|
|