2
0

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.

Cognos リストをプロンプトで選択した項目で「昇順・降順」に並び替える

Posted at

概要

Cognos BI & Analyticsで、リストのソートを項目指定&ソート順指定で行いたい時のやり方です。

ソート項目のプロンプトで「数量」を選択し、ソート順のプロンプトで「降順」を選択した例です。
001.PNG

ソート項目のプロンプトで「収益」を選択し、ソート順のプロンプトで「昇順」を選択した例です。
002.PNG

実装

リストのクエリーに以下の式の定義となる、「ソート制御」というデータアイテムを追加します。
003.PNG

  • 実際の式
    case ?pSort?
     when '降順' then
      case ?pItem?
       when '数量' then [数量]
       when '単価' then [単価]
       when '収益' then [収益]
       when '総利益' then [総利益]
       when '計画収入' then [計画収入]
      end
     when '昇順' then
      case ?pItem?
       when '数量' then [数量]*-1
       when '単価' then [単価]*-1
       when '収益' then [収益]*-1
       when '総利益' then [総利益]*-1
       when '計画収入' then [計画収入]*-1
      end
     end

リストのプロパティで「グループ化とソート」から、下記の様に「ソート制御」のデータアイテムを配置します。
004.PNG

昇順の場合に、数値データに-1を掛けているのがポイントです。
データアイテムが多くなるとcase文で全部書くのは厳しいですが、簡単に実装できるやり方なので、ご活用頂ければと。

2
0
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
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?