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

generate montly records from yearly values

Hi

I have budget values for accounts for a year but need to report actual versus budget on a monthly basis.

Thought it would be easiest to create monthly budget values for displaying

Started with something like

Budget_Month:
LET vMonat = 0;
Do while vMonat < 12
load account, (budget / 12), date(addmonths(Year,$(vMonat)))
resident budget_year;
LET vMonat = $(vMonat) + 1;
loop

and tried many variations but did not succeed (Year is '2010')

Thanks for any hint

Juerg

1 Solution

Accepted Solutions
sparur
Specialist II
Specialist II

Hello, Juerg

Please, look at my small example

View solution in original post

1 Reply
sparur
Specialist II
Specialist II

Hello, Juerg

Please, look at my small example