Hi!
How fix empty measure-value, when it measure unrelated with dimension?
Example:
I have 2 views:
V_STORE:
| Column name |
|---|
| STORE_ID |
| <..MANY_OTHER_FIELDS..> |
| TRADING_AREA |
| REGION_ID |
V_CALENDAR
| Column name |
|---|
| CDATE |
| MONTH |
| YEAR |
| <..MANY_OTHER_FIELDS..> |
|
These two tables are not related the physical level:

Table "STORE" is used as dimension, and as measure by field "TRADING_AREA" (default aggregation rule: sum). It is 2 difference logical table in Business-level in repository. This two logical tables are related in business level.
Table "CALENDAR" is used only as dimension.
Business model diagram:

Now, if i make analysis, where i choose fields from "Store", example REGION_ID (from store-dimesnion) and TRADING_AREA (from store-measure), i get result:

But if i drag field from table Calendar (example "Year"), then value of TRADING_AREA will be empty:

How to make the value "TRADING_AREA" was displayed for every calendar item?
Example (without calendar):
| REGION_ID | TRADING_AREA |
|---|
| 1 | 1000 |
| 2 | 5000 |
And with year
| YEAR | REGION_ID | TRADING_AREA |
|---|
| 2000 | 1 | 1000 |
| 2000 | 2 | 5000 |
| 2010 | 1 | 1000 |
| 2010 | 2 | 5000 |
| 2016 | 1 | 1000 |
| 2016 | 2 | 5000 |