Forum Discussion
ALeef
10 years agoResolver II
Possible Tip/Trick: Dynamic Date Dimension Table
I'm going to share the dynamic date dimension table I built, hopefully it is useful to someone! I named it DateTable for this tutorial, and my fact table FactTable. The table is built using the ...
Anonymous
10 years agoNot applicable
This is still relevant and so awesome
I'm using this to join a set of data that only has discreet dates which don't allow use of the previousyear() functions etc
thanks for sharing :D
ps. I also added an extra column:
FiscalYear = IF(MONTH(DateTable[Date]) > 6, DateTable[Year] &"/"&right(DateTable[Year],2)+1, DateTable[Year]-1 &"/"&right(DateTable[Year],2))