Forum Discussion
Noak
Helper IV
9 years agowrong dates displayy
Hello, so I'm working on a big report including dates from 2016 and 2017, for some reason the date hirrarchy mix dates from Q1 2016 and 2017. I would like to present 5 Quarter, Q1 2016 Q2 2016 Q3 ...
- Anonymous9 years ago
Hi Noak,
I agree with BetterCallFrank's solution. Below is a sample about how to use it:
1. Add a calculate column to store the "quarter year".
Year-Quarter = CONCATENATE([Date].[Quarter]," "& [Date].[Year])
2. Drag the new column as the axis field and remove the original date column which in your visual.
Regards,
Xiaoxin Sheng
Anonymous
9 years agoNot applicable
Hi Noak,
I agree with BetterCallFrank's solution. Below is a sample about how to use it:
1. Add a calculate column to store the "quarter year".
Year-Quarter = CONCATENATE([Date].[Quarter]," "& [Date].[Year])
2. Drag the new column as the axis field and remove the original date column which in your visual.
Regards,
Xiaoxin Sheng
Noak
Helper IV
9 years agosolved i repleased the year with quarter in order to have logic.
Year-Quarter = CONCATENATE( [createdon].[Year]," " & [createdon].[Quarter])
thank you!.