1)
For a crosstab you probably need to change the crosstab suppression option.
By defaults rows and columns with all null values are suppressed.
2)
In addition you need to model the relationships, such that the minimum cardinality at the fact table is set to 0.
E.g. DateInfo(1:1)------(0:N)FactData
and Status(1:1)-----(0:N)FactData
In the crosstab,
select row header from the DateInfo table
select column header from the Status table
for the crosstab corner select the measure from the FactData table.
Setting the joins in this manner allows all the dimension information to be retained even if there is not related FactData.
The suppression option in the crosstab needs to be turned off, otherwise it will get suppressed during rendering.
//Henk
------------------------------
HENK CAZEMIER
------------------------------
Original Message:
Sent: Tue June 18, 2019 08:11 PM
From: Walter Lim
Subject: CrossTab reporting blank measures
Its not a formatting issue. I know there are values in some cells. The original cross tab report I manage to generate with the correct numbers looks like this.

We want to improve on the report to show columns and rows with no values as well, ie the status columns should have Open, In Progress, .... with no values which we want to display as well. Same for the rows. The method I am trying to use comes from a old post 2016 so not sure if it still works. I manage to get most of the method working upto to 5th point. There are 2 cross links, if I remove the Date week (row) link I can see some results but the numbers are wrong.

------------------------------
Walter Lim
------------------------------
Original Message:
Sent: Tue June 18, 2019 09:58 AM
From: DENNY NAREZNY
Subject: CrossTab reporting blank measures
@Walter Lim If this is just for display purposes, you can apply data format on the crosstab fact cells.
------------------------------
DENNY NAREZNY
Original Message:
Sent: Mon June 17, 2019 08:55 PM
From: Walter Lim
Subject: CrossTab reporting blank measures
I think the problem is with this joint. If I remove one of the links some measurements are displayed but the values are not sum correctly.

------------------------------
Walter Lim