Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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
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!
Solved! Go to Solution.
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.
3. Add [Year], [Half Year], [Quarter], [Month], [Day] in a customized order - to the created date hierarchy.
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
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
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.
3. Add [Year], [Half Year], [Quarter], [Month], [Day] in a customized order - to the created date hierarchy.
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
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
@Anonymous
Thanks for your reply. I tried above but still can't enable trend line. Can you send me the file?
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 44 | |
| 43 | |
| 38 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 68 | |
| 64 | |
| 31 | |
| 29 | |
| 24 |