Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Gesamtsummen-Formel funktioniert in der Pivot-Tabelle bei den folgende Feldern nicht:
Formel im Feld "Änd.-Plus" =If([Änderung]>0, 1, 0)
Formel im Feld "Änd.-Minus" =If([Änderung]<0, -1, 0)
Für Eure Hilfe bedanke ich mich im Voraus!
You would need to add Sum(Agg()) to get the right result in the total field, something like this below , add your table dimensions in the Aggr function
Sum(aggr(if([Visits]>0,1,0),[Client Name]))
Vielen Dank für die schnelle und wertvolle Hilfe!
So konnte ich mein Problem lösen:
=Sum(aggr(if(Count(If(%Datum = vaMaxLagerplatzinhalt, Lagerplätze_Änderungen.LagerplätzeÄnd))
-Count(If(%Datum = vaMaxLagerplatzinhalt_VW, Lagerplätze_Änderungen.LagerplätzeÄnd_VW))>0, 1, 0),[%Artikel%Variante]))
You would need to add Sum(Agg()) to get the right result in the total field, something like this below , add your table dimensions in the Aggr function
Sum(aggr(if([Visits]>0,1,0),[Client Name]))
Vielen Dank für die schnelle und wertvolle Hilfe!
So konnte ich mein Problem lösen:
=Sum(aggr(if(Count(If(%Datum = vaMaxLagerplatzinhalt, Lagerplätze_Änderungen.LagerplätzeÄnd))
-Count(If(%Datum = vaMaxLagerplatzinhalt_VW, Lagerplätze_Änderungen.LagerplätzeÄnd_VW))>0, 1, 0),[%Artikel%Variante]))