Forum Discussion
wrong dates displayy
- 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
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
- Noak9 years ago
Helper IV
hi Anonymous
I alreday figured it on my own , problem is the order as you can see:
Q1 -2017 Should be the latest.
- Noak9 years ago
Helper IV
solved i repleased the year with quarter in order to have logic.
Year-Quarter = CONCATENATE( [createdon].[Year]," " & [createdon].[Quarter])
thank you!.