I’m putting in DIM1 a report filter: DIM1 in list (1,2,3,4,5)
The data retreived from database only bring [metric1] for 1,2.
I’d like to put value 0 in metric1 for the ones which doesn’t come from database. So in this case the result will look like:
1 | 2 | 3 | 4 | 5
2 | 7 | 0 | 0 | 0
Any suggestion would be very appreciated.
Thanks in advance.
A.S.
SO you mean, I need to bring [DIM1] with no filters ( in another query)
And then put Metrics below.
BO will by itself join the values [DIM1] for two Queries.
Then i use a formula like If(IsNull([Metric1]; 0; [Metric1])