共用方式為


PropertyRef 元素 (CSDLBI)

重要: 這份檔已封存。 如需最新資訊,請參閱 Open 規格 [CSDLBI]:概念結構定義檔案格式與商業智慧批註

PropertyRef 元素是簡單類型,可提供為另一個屬性提供所需值的資料行參考。

元素和屬性

下表列出定義 PropertyRef 元素的元素和屬性。

名稱 必要 描述
Name Yes 字串,包含做為參考目標之屬性的名稱。

PropertyRefs 元素

PropertyRefs 是複雜類型,用於定義屬性集合,其中每個屬性都包含在 PropertyRef 元素中。

下表列出 PropertyRefs 類型的元素和屬性。

名稱 必要 描述
PropertyRef 包含屬性參考的字串。

表格式範例

下列 CSDLBI 1.1 版中的範例顯示 PropertyRef 元素,它會根據 AdventureWorks 表格式模型範例指定量值中使用的公式來源。

<bi:Measure Caption="Total Current Quarter Margin Performance" ReferenceName="Total Current Quarter Margin Performance" Width="0" IsSimpleMeasure="false">  
  <bi:Kpi StatusGraphic="Three Symbols UnCircled Colored">  
    <bi:KpiGoal>  
      <bi:PropertyRef Name="Measures___Total_Current_Quarter_Margin_Performance_Goal_" />  
    </bi:KpiGoal>  
    <bi:KpiStatus>  
      <bi:PropertyRef Name="Measures___Total_Current_Quarter_Margin_Performance_Status_" />  
    </bi:KpiStatus>  
  </bi:Kpi>  
</bi:Measure>  

多維度範例

下列 CSDLBI 1.1 版中的範例會顯示來自 Contoso Operations Cube 的 KPI。 PropertyRef 元素指向包含公式的資料行,或是用來定義 KPI 的目標和狀態的值(相對於該目標)。

<Property Name="Sum_of_SalesAmount" Type="Decimal" Precision="19" Scale="4">  
   <Documentation>  
     <Summary>KPI Description</Summary>  
   </Documentation>  
     <bi:Measure   
         Caption="Sum of SalesAmount"   
         ReferenceName="Sum of SalesAmount"   
         FormatString="\$#,0.00;(\$#,0.00);\$#,0.00">  
     <bi:Kpi   
           StatusGraphic="Three Circles Colored">  
         <bi:KpiGoal>  
            <bi:PropertyRef Name="v_Sum_of_SalesAmount_Goal" />  
          </bi:KpiGoal>  
          <bi:KpiStatus>  
              <bi:PropertyRef Name="v_Sum_of_SalesAmount_Status" />  
          </bi:KpiStatus>  
     </bi:Kpi>  
     </bi:Measure>  
</Property>