문제

[SharePoint 2013 Enterprise SP1 사용]

Dashboard Designer에서 KPI를 만들고 모든 기능에 대한 놀랍게도 작은 문서를 찾고 있습니다. (OK, 어쩌면 나는 꽤 흥분되지 않고 놀랐지 만 놀랐습니다.)

SQL Server 테이블에 연결하는 데이터 연결이 생성되고 연결이 제대로 작동하는 것 같습니다. 이 테이블에는 레코드 당 1 위젯이 있으며 (다른 것들 중에서) 생성 시간 필드 (단축) 및 패스 / 페일 필드 (비트)가 있습니다. 저는 KPI가 주어진 날에 95 %를 지나가면 "녹색"을 원한다면, 85 % -95 % (85 % -95 %)가 있으면 "붉은",

KPI의 숫자 형식의 경우, 백분율 형식, 소수점 1 자리를 사용하여 실제 및 대상이 있습니다.

데이터 매핑의 경우 실제로 사용중인 측정 값은 SQL Server 테이블의 패스 / 페일 필드입니다. 나는 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