I have 3 columns in my SSAS tabular model: Date, Amount, Amount n-1
The problem is that I would like to have for example a row with:
Date Amount Amount n-1
29thFeb 0 2000$
is there any way to deal with leap years situations? As 29th Feb 2017 does not exist, this row does not show up in my table.
My datasource is just a simple SQL Server Sales Table with 2 columns, Date and Amount
Example of what I would like to achieve when using Date, Amount and Amount(n-1) in a PivotTable, using my SSAS tabular model as datasource:
Date Amount Amount n-1
1stFeb 1500$ 1700$
2ndFeb 1300$ 1000$
...
28thFeb 700$ 800$
29thFeb 0 2000$
TOTAL 3500$ 5500$