Re: Applying Kpi Filter from with C# -
08-23-2010
, 03:23 AM
Hi, you can execute simple MDX query that uses KPIGoal, KPIValue
functions to retrieve value and goal of KPI. In such query you can add
where clause that filters data. It would look like this:
SELECT KPIValue("your kpi") on columns
FROM YourCube
WHERE ([Date].[Year].[Year].&[2010])
Hope this helps,
Piotr |