Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Bonjour à tous,
Je suis nouveau dans la communauté et comme utilisateur QV.
je souhaite calculer une variation en pourcentage d'une valeur numérique d'une année N par rapport la période précédente N-1.
Dans mon exemple, je suis dans un tableau croisé dynamique.
merci de votre aide.
Patrick MORICEAU.
If you have a Chart table. It has Years as dimension. The years are sorted from low to high.
You can use something like this:
=Sum(Value)/above(Sum(Value))
For other table and sort directions also consider functions below(), before() and after().
If you have a Chart table. It has Years as dimension. The years are sorted from low to high.
You can use something like this:
=Sum(Value)/above(Sum(Value))
For other table and sort directions also consider functions below(), before() and after().
C'est tout à fait celà, Merci beaucoup.