2016-03-29 7 views
0

enter image description hereMDX: Wie Nullwert

Wie zu ersetzen, in mdx Nullwerte zu ersetzen.

+1

Ich denke, das hat schon gefragt worden: http://stackoverflow.com/questions/25851274/mdx-how-to-replace-null-values-with-0 -in-measures-members – whytheq

Antwort

1

Vielleicht so etwas wie folgt aus:

WITH 
    MEMBER [Measures].ComputerSalesNew AS 
    iif(
     isempty([Measures].ComputerSales), 
     0, 
     [Measures].ComputerSales 
    ) 
+0

hi @ whtheq- kannst du bitte die folgende Frage beantworten http://stackoverflow.com/questions/36282243/mdx-i-need-column-count-based-on-the-total-rows – Yugandhar