Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Year on Year Growth - projection

Hi,

It sounds simple but can somebody help me with the following. I am projecting and 10% growth (year on year) every year for the next five years. I want this growth to be a variable so that I can change it to 11%, 14% etc.

For example this is a table wit base sales of 100 on year1, you can see that if a 10%groth is applied the data is as follows

Year1Year2Year3Year4Year5
100110121133.1146.41


thanks

1 Solution

Accepted Solutions
martin59
Specialist II
Specialist II

Hi,

You have to create a variable (Settings / Variable Overview / Add) named vGrowth and make a straight table with a dimension and this expression :

sum({<Year={Year1}>} MyField)


Rename this expression as : MyField Year1

Now you can do a second expression like this :

[MyField Year1]*vGrowth


Rename this second expression as : MyField Year2
Repeat this manipulation for the next expressions ([MyField Year2]*vGrowth...)

You can also do a slider to define your variable value.


Hope it helps you
Martin

View solution in original post

1 Reply
martin59
Specialist II
Specialist II

Hi,

You have to create a variable (Settings / Variable Overview / Add) named vGrowth and make a straight table with a dimension and this expression :

sum({<Year={Year1}>} MyField)


Rename this expression as : MyField Year1

Now you can do a second expression like this :

[MyField Year1]*vGrowth


Rename this second expression as : MyField Year2
Repeat this manipulation for the next expressions ([MyField Year2]*vGrowth...)

You can also do a slider to define your variable value.


Hope it helps you
Martin