3
5

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.

Powerappsで並び替えをする方法

Last updated at Posted at 2019-06-11

#Powerappsで並び替えをする方法

参考文献はこちら
PowerAppsTips~データのソート SortByColumns関数~

##Sortをコントロールする場所をみつける。
sortがはまっている場所は、ギャラリーから選択すると見つけられる。場所は、ここ
image.png

##コードを書き換えてみよう

SortByColumns(Search(テーブル1, TextSearchBox1.Text, "ジャンル","金額","項目"), 
"ジャンル", If(SortDescending1, Descending, Ascending))

とこんなかんじになっていますので、ジャンル→日付にしてみましょう。

以下のコードに変更すればいいでしょう。

SortByColumns(Search(テーブル1, TextSearchBox1.Text, "ジャンル","金額","項目"),
 "日付", If(SortDescending1, Descending, Ascending))

そうするとこんなかんじでまずは並び替えることに成功する。

image.png

出力結果はこんな感じで、日付別になる。

##昇順と、降順を切り替えよう。

sort desending

SortByColumns(Search(テーブル1, TextSearchBox1.Text, "ジャンル","金額","項目"), 
"日付", Descending)

最後の項目を
If(SortDescending1, Descending, Ascending))

Descending

3
5
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
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?