ReportPortal
ReportPortal
Home | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 ReportPortal General Forum
 Report Portal General Issues
 SSAS KPI display

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Anti-Spam Code:
Message:

* HTML is ON
* Forum Code is OFF
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
marco Posted - 02/20/2006 : 07:28:59
Hi,

What is the MDX code to display SSAS KPIs in OLAP Report ?

I can display the KPI for Internet Revenue:

Select non empty HIERARCHIZE(DISTINCT({{
[Product].[Product Line].[(All)].AllMembers,
[Product].[Product Line].[All Products].Children}})) on rows,
non empty {
KPIValue('Internet Revenue'), KPIGoal('Internet Revenue'), KPIStatus('Internet Revenue'), KPITrend('Internet Revenue')} on columns
From [Adventure Works]

But I want to show all KPIs like in the SSAS 2005 KPI Browser any idea?

Regards,
Marco Groeneveld
www.gmsbv.nl
1   L A T E S T    R E P L I E S    (Newest First)
admin Posted - 02/20/2006 : 12:54:56
SELECT { [Measures].[Total Product Cost],
KPIValue('Product Gross Profit Margin'),
KPIGoal('Product Gross Profit Margin'),
KPIStatus('Product Gross Profit Margin'),
KPITrend('Product Gross Profit Margin') } ON COLUMNS,
{ [Product].[Category].CHILDREN } ON ROWS
FROM [Adventure Works]


MDX functions in Analysis Services 2005
http://www.sqljunkies.com/HowTo/9D6C4A2A-D991-48FE-8962-D439A46E6640.scuk

ReportPortal © 2000-2002 Snitz Communications Go To Top Of Page