Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello all,
is it possible to display subtotals for calculated dimension in a pivot table.
Or is there any other solution with straight table to achive this outcome.
For calculated dimension Betrag_Abgrenzung, Betrag Bilanzbuchung, Differenz and Veränderung should the subtotals be displayed.
ahh there we go again. no it's not. Just one total row.
I think you're only Chance (maybe there is a workaroung with a lot of work) is to Change the dynamic dimensions to Expression as i said before:
I would Keep the Expression like this but add it as Expression and not as dynamic Dimension:
You will not get the subtotals in dynamic dimensions. Only in Expressions.
=SUM(AGGR(NUM(BETRAG_ABGRENZUNG,'##.###,##'),UK,SK,SUBKATEGORIE,ZE,ZNR,KOST,BK,KOA,J,N,U,SV_ID,C,T,AEK,K,X,M,BETRAG_ABGRENZUNG))
Repeat this for the other 3 dynamic dimensions
regards
tim
Subtotal never works as i said before in dimension level.
Thanks for your answer
I managed to get the right output with the following LOAD.
Ueberleitung: LOAD ... Num#(BETRAG_ABGRENZUNG,'#.###,##') as BETRAG_ABGRENZUNG, Num#(BETRAG_BILANZBUCHUNG,'#.###,##') as BETRAG_BILANZBUCHUNG, Num#(DIFFERENZ,'#.###,##') as DIFFERENZ, Num#(VERAENDERUNG_DIFFERENZ,'#.###,##') as VERAENDERUNG_DIFFERENZ; SQL Select....; Concatenate(Ueberleitung) UeSummen: LOAD ... SUM(Distinct BETRAG_ABGRENZUNG) as BETRAG_ABGRENZUNG, SUM(Distinct BETRAG_BILANZBUCHUNG) as BETRAG_BILANZBUCHUNG, SUM(Distinct DIFFERENZ) as DIFFERENZ, SUM(Distinct VERAENDERUNG_DIFFERENZ) as VERAENDERUNG_DIFFERENZ Resident Ueberleitung Group by LAND, FCO, STICHTAG, UK;