Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hallo, ich benötige Hilfe bei einer Set Analysis-Formel.
Folgende Formel funktioniert in einer PivotTabelle:
=if(sum({$<Datum_max={"$(=Maxstring(Datum_max))"}>}#_Std_Saldo) > 50, vColorRed)
Wenn zusätzlich bei der Selektion die Abteilung selektiert wird funktioniert diese Formel nicht mehr, da diese aus einer anderen Quelle kommt. Ich möchte, dass in der Formel die Selektion der Abteilung ignoriert wird. Habe folgende Formel getestet, funktioniert leider nicht.
=if(sum({$<Datum_max={"$(=Maxstring(Datum_max))"} , Abteilung = >}#_Std_Saldo) > 50, vColorRed)
Können Sie diese Formel probieren?
=if(sum({$<Datum_max={"$(=Maxstring({<Abteilung>}Datum_max))"} , Abteilung = >}#_Std_Saldo) > 50, vColorRed)
Das hat super geklappt vielen Dank!
Funktioniert dies auch mit Masterkennzahlen. Auch hier habe ich das Problem, dass die Formel nicht mehr funktioniert sobald die Abteilung selektiert wird.
if(
if([#_ISTStd. min.24Mon.] < [#_ISTStd. $MAX] and [#_ISTStd. min.24Mon.] < 0
and
[#_ISTStd. $MAX] >= 0, [#_ISTStd. $MAX] , [#_ISTStd. $MAX] - [#_ISTStd. min.24Mon.]
)
> 0, vColorRed)
You may have to change all your master measures to include the set analysis in order not to take in account Abteilung in this case.
Hey,
Welche Dimensionen sind in der Pivot-Tabelle?
In der Zeile "%Name" , in der Spalte "%Datum", als Kennzahl #Planstd.
Können Sie diese Formel probieren?
=if(sum({$<Datum_max={"$(=Maxstring({<Abteilung>}Datum_max))"} , Abteilung = >}#_Std_Saldo) > 50, vColorRed)
Das hat super geklappt vielen Dank!
Funktioniert dies auch mit Masterkennzahlen. Auch hier habe ich das Problem, dass die Formel nicht mehr funktioniert sobald die Abteilung selektiert wird.
if(
if([#_ISTStd. min.24Mon.] < [#_ISTStd. $MAX] and [#_ISTStd. min.24Mon.] < 0
and
[#_ISTStd. $MAX] >= 0, [#_ISTStd. $MAX] , [#_ISTStd. $MAX] - [#_ISTStd. min.24Mon.]
)
> 0, vColorRed)
Like this maybe (not very nice but should work:
if(
if({<Abteilung>}[#_ISTStd. min.24Mon.] < {<Abteilung>}[#_ISTStd. $MAX] and {<Abteilung>}[#_ISTStd. min.24Mon.] < 0
and
{<Abteilung>}[#_ISTStd. $MAX] >= 0, {<Abteilung>}[#_ISTStd. $MAX] , {<Abteilung>}[#_ISTStd. $MAX] - {<Abteilung>}[#_ISTStd. min.24Mon.]
)
> 0, vColorRed)
Funktioniert leider nicht.
You may have to change all your master measures to include the set analysis in order not to take in account Abteilung in this case.
Durch die Ergänzung in der Masterkennzahl hat es funktioniert. Vielen Dank.