Forum Discussion
Date Hierarchy issues
- 9 years ago
Hi,
here's a quickest solution - calculated column
Year-Quarter = CONCATENATE( [createdon].[Year]," " & [createdon].[Quarter])
thank you for your help.
Forgot to mention that you can make this dynamic by having your date table reference the earliest and latest dates in your "CreatedOn" field so that the date table always gives you the necessary range. If you need the range to extend further, than you can either hard code it or use the latest date and add to it, depending on your use case.
As for the date hierarchy mixing dates, please provide some additional info so we can discover what is going on.
Hi,
here's a quickest solution - calculated column
Year-Quarter = CONCATENATE( [createdon].[Year]," " & [createdon].[Quarter])
thank you for your help.