سؤال

[استخدام SharePoint 2013 Enterprise SP1]

أحاول إنشاء KPI في مصمم لوحة المعلومات، وإيجاد التوثيق القليل المثير للدهشة لجميع ميزاته. (حسنا، ربما أنا جدعن جدا وليس هذا فوجئت.)

لدي اتصال بيانات تم إنشاؤه يتصل بجدول SQL Server، ويبدو أن هذا الاتصال يعمل بشكل صحيح. يحتوي الجدول على عنصر واجهة مستخدم واحد لكل سجل، مع (من بين أشياء أخرى) حقل وقت الإبداع (ShortDateTime)، وحقل تمرير / فشل (بت). أريد أن تكون KPI الخاصة بي "أخضر" إذا، على سبيل المثال،> 95٪ تمر في يوم معين، "أصفر" إذا كان ما بين 85٪ -95٪ تمر، و "أحمر" إذا كان

للحصول على تنسيق الأرقام في KPI، لدي كلا من الفعلي والهدف باستخدام تنسيق النسبة المئوية، مكان عشري.

للحصول على تعيينات البيانات، والقياس الذي أستخدمه فعليا هو حقل Pass / Fail من جدول SQL Server. لدي 1 البعد: DECIDATE.DAY (قمت بتحديد مستويات لمدة سنة و "فترة الزمنية واليوم" مرة أخرى في اتصال البيانات، مع حقل My Redureate كبعدي من الوقت الرئيسي.) قمت بتعيين الافتراضي الأبعاد، أمس. بالنسبة للهدف، فإن تعيين بياناتي هو 1 (القيم الثابتة).

للحصول على عمود الحساب، قمت بتعيين الفعلي إلى الافتراضي (المتوسط) والهدف هو الافتراضي.

عندما أحاول إضافة هذا إلى بطاقة النتائج، أحصل على خطأ for الفعلي والهدف. لست متأكدا من أين نذهب من هنا. شكرا لأي مؤشرات!

هل كانت مفيدة؟

المحلول

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