cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
azaterol
Helper V
Helper V

Date hierarchy weekday

Hey everybody,

 

how can I include the weekdays in my hierarchy?

Actually I got this view. In my matrix I also need the weekdays like monday, tuesday, wednesday, etc.

pic1.PNGpic2.PNG

 

 

 

 

 

 

 

 

 

 

 

 

 

 

How can I do this? You have an idea ?

 

Thank you

2 REPLIES 2
v-rzhou-msft
Community Support
Community Support

Hi @azaterol ,

 

In additon to SpartaBI's reply, I think you can try CALENDAR() or CALENDARAUTO() function and use functions YEAR(), MONTH(),DAY() and WEEKDAY() ,FORMAT([Date],YYYY/DDDD/MMMM) to create custom date table.

DimDate code should look like as below.

DimDate = 
ADDCOLUMNS (
    CALENDAR ( DATE ( 2019, 01, 01 ), DATE ( 2022, 12, 31 ) ),
    "Year", YEAR ( [Date] ),
    "Month", MONTH ( [Date] ),
    "MonthLongName", FORMAT ( [Date], "MMMM" ),
    "Day", DAY ( [Date] ),
    "Weekday", WEEKDAY ( [Date], 2 ),
    "WeekdayName", FORMAT ( [Date], "DDDD" )
)

Result is as below.

RicoZhou_0-1657097708404.png

Best Regards,
Rico Zhou

 

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

 

 

SpartaBI
Community Champion
Community Champion

@azaterol this is the auto date time table, you can edit it. As a best practice you want to create your own custom date table with everything you need.
Please refer to this article: https://www.daxpatterns.com/standard-time-related-calculations/

Read it carefully and It will give you what you need.


2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png


Full-Logo11.png

SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Showcase Report – Contoso By SpartaBI

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors