Skip to main content
Skip table of contents

Modelling Seasonality

For distributing a yearly key figure over months it can be useful to add a seasonality logic to your Model.


To extend your Model by a seasonality logic, you need to create a helper Dimension. Here we call this helper Dimension "CALMONTH".

It basically works like this: List each month existing within the Model horizon and map it with the respective calendar month. For a Model horizon 2019-2020 we would have.

With the mapping column we assign the matching calendar month to each month of the time Dimension. The counter needs not necessarily to be added, but can be useful for more complex Model logic.


To define our desired seasonality, we create an additional Sheet with the seasonality value mapped to the desired month. If you want to show the same seasonality share for each year, only the first year of the Model horizon is needed.


The next step is to create our helper Dimension "Calendar Month" in Valsight.


Therefore we add the new Dimension and assign the months as elements.


The most simple Model setup to implement our seasonality logic would be the following:


The "CALMONTH" Node contains the mapping column, where we matched the time Dimension month with our calendar month


The "Seasonality Share" Node contains the seasonality column for our defined share values for each month in 2019.


The "Seasonality Share All Years" Node combines both other Nodes in a way, that the defined seasonality share for 2019 is transferred to all years.


By multiplying the Seasonality Share with the CALMONTH Node and dropping the year you are left with the value share per"calender month".

 = DROPLEVEL('Seasonality Share'*'CALMONTH',"Year")


This multiplied with the CALMONTH Node, dropping the CALMONTH level results in the seasonality share transferred to all defined years & months.

 = DROPLEVEL(DROPLEVEL('Seasonality Share'*'CALMONTH',"Year")*'CALMONTH',"CALMONTH")





JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.