Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
irenelitw629
Helper II
Helper II

How to add Half year date column in date hierarchy (continuous date type)

Hi,

 

How can I add "Half Year" to the date hierarchy? I want to enable the trend line so it needs to be continous date type.

Ideally the trend line chart can drill down to Year. Half Year, Quarter 3 different hierarchies

2023-07-31_14-15-50.png

I tried to create a column using below DAX but it is text type and my trend line disapear...

Half Year=YEAR([Date])&" HY "&ROUNDUP(MONTH([Date])/6,0)

 

Thanks!

1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @irenelitw629 ,

 

Here are the steps you can follow:

1. Create calculated column.

Year =
 YEAR('Table'[Date])
Half Year =
YEAR([Date])&"HY"&ROUNDUP(MONTH([Date])/6,0)
Quarter =
"Qtr"&" "&QUARTER('Table'[Date])
Month =
 FORMAT('Table'[Date],"mmmm")
Day =
 DAY('Table'[Date])

2. Check [Date] - click on the three ellipses - Create hierarchy.

vyangliumsft_0-1690963470679.png

3. Add [Year], [Half Year], [Quarter], [Month], [Day] in a customized order - to the created date hierarchy.

vyangliumsft_1-1690963470683.png

vyangliumsft_2-1690963528972.png

4. Result:

Create a slicer with a date hierarchy, and a Visual with the [Date] column as the primary, so that the slicer can hierarchize the Visual

 

vyangliumsft_3-1690963528994.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

3 REPLIES 3
v-yangliu-msft
Community Support
Community Support

Hi  @irenelitw629 ,

 

Here are the steps you can follow:

1. Create calculated column.

Year =
 YEAR('Table'[Date])
Half Year =
YEAR([Date])&"HY"&ROUNDUP(MONTH([Date])/6,0)
Quarter =
"Qtr"&" "&QUARTER('Table'[Date])
Month =
 FORMAT('Table'[Date],"mmmm")
Day =
 DAY('Table'[Date])

2. Check [Date] - click on the three ellipses - Create hierarchy.

vyangliumsft_0-1690963470679.png

3. Add [Year], [Half Year], [Quarter], [Month], [Day] in a customized order - to the created date hierarchy.

vyangliumsft_1-1690963470683.png

vyangliumsft_2-1690963528972.png

4. Result:

Create a slicer with a date hierarchy, and a Visual with the [Date] column as the primary, so that the slicer can hierarchize the Visual

 

vyangliumsft_3-1690963528994.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

@v-yangliu-msft 

Thanks for your reply. I tried above but still can't enable trend line. Can you send me the file?

irenelitw629
Helper II
Helper II

@amitchandak , do you know the solution?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.