質問

[SharePoint 2013 Enterprise SP1を使用する]

ダッシュボードデザイナーでKPIを作成し、そのすべての機能については驚くほどドキュメンテーションを見つけています。 (大丈夫、多分私はかなり吐き出していて、それほど驚いていません。)

私はSQL Serverテーブルに接続し、その接続が正しく機能しているようです。テーブルにはレコードごとに1つのウィジェットがあり、(他のものの中に)作成時間フィールド(ShortDateTime)、およびpass / failフィールド(ビット)があります。特定の日に95%を超える場合は、kpiが「緑」、85%~95%パスの場合は「黄色」、<85%パスの場合は「赤」の場合は「黄色」にすることができます。

KPIの数値フォーマットでは、Acterageフォーマットを使用して実際のターゲットを持ち、小数点以下1位です。

データマッピングの場合、実際に使用しているメジャーは、SQL Serverテーブルのasp / failフィールドです。 1次元:CreateDate.day(私は毎月、月、日中の「期間レベル」がデータ接続に戻っていました。)私はマスタータイムのディメンションとして分析されました。ターゲットの場合、データマッピングは1(固定値)です。

計算列には、実際にデフォルト(平均)、ターゲットがデフォルトで設定されます。

スコアカードにこれを追加しようとすると、実際のターゲットにエラーが入手してください。ここからどこへ行ったのかわからない。ポインタをありがとう!

役に立ちましたか?

解決

After some more searching and experimenting, I figured it out. I did not find any documentation for DD '13 but did find some for DD '10, which was "close enough" to translate to the newer version. Here are some relevant MS doc pages:
Walkthrough: Calculate normalized scores for KPIs
Configure data column properties
Configure time and aggregation settings

For my specific problem, here are the steps I took:

SQL Table
• Change the PassFail column from a bit to an integer which contains either 0 or 100 (instead of 0 or 1).

Data Source
• On the View tab, set all fields (other than the CreateDate and PassFail fields) to a Column Type of Ignore (this is in the Details pane).
• For the CreateDate field, set the Column Type to be TimeDimension. For the PassFail field, set the Column Type to Fact and the Aggregation to Average.

KPI
• Reset the Number Format for both Actual and Target to (Default).
• Change the Target Data Mapping from 1 to 100 (still Fixed value).
• In the Calculation column either Default or Data value will work.

That should do it! Now, on to filters...

ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top