0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【BluePrism】列を数値型にしてからソートする

Last updated at Posted at 2019-12-16

以下のようなコレクションを「フィールド1」列でソートしたい場合、Sort Collectionを使ってもうまくソートされません。
列の型がText型だからです。
image.png

なので、指定した列の型を強引にInteger型にしてソートするオブジェクトを作りました。
ベースはSort Collecctionです。
image.png

Input

image.png

Output

image.png

Code

Try
	Dim New_Collection As System.Data.DataTable
	New_Collection = New DataTable()

	For Each c As System.Data.DataColumn In Collection_In.Columns
		If c.ColumnName = Sort_Field Then
			New_Collection.Columns.Add(New DataColumn(Sort_Field, GetType(Integer)))
		Else
			New_Collection.Columns.Add(New DataColumn(c.ColumnName, GetType(String)))
		End If
	Next

	For Each r As System.Data.DataRow In Collection_In.Rows
		New_Collection.ImportRow(r)
	Next

	If Ascending Then
		New_Collection.DefaultView.Sort = Sort_Field & " ASC"
    Else
		New_Collection.DefaultView.Sort = Sort_Field & " DESC"
    End If
    Sorted_Collection = New_Collection.DefaultView.ToTable
    Success = True
    Message = ""
Catch e As Exception
    Success = False
    Message = e.Message
End Try

サンプル

https://github.com/falcslab/blueprism/tree/collection
BPA オブジェクト - 数値でソート.xml

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?