Forum Discussion
Possible Tip/Trick: Dynamic Date Dimension Table
I am probably missing something but when I enter the DateTable = CALENDAR (MINX('FactTable', [Created Date]), NOW()) in a new table it says it cant find FactTable. I changed this to a table I had imported and then it says Created Date cannot be found.
I am very new to DAX so would appreciate if you could explain a bit further please as this looks very useful.
Thanks,
- RJ10 years agoResolver II
Did you put for minx
1 The table name 'Account Transactions',
2 The field name 'Account Transactions'[Date]) ,
DateTable = CALENDAR( minx ( 'Account Transactions', 'Account Transactions'[Date] ) , today ())
- ALeef10 years agoResolver II
GilesWalker : [Created Date] refers to a field in my Fact Table, so you will have to change your field name to something that has a date in it.