Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Calculer une variation en % d'une valeur d'une année N par rapport à N-1

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.

1 Solution

Accepted Solutions
whiteline
Master II
Master II

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().

View solution in original post

2 Replies
whiteline
Master II
Master II

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().

Not applicable
Author

C'est tout à fait celà, Merci beaucoup.