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

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply
Yrstruly2021
Helper V
Helper V

Date, Fiscal Table

I am trying to create a date table, to link it to my public holiday table. The created date table does not contain any data, please assist?

See: https://drive.google.com/file/d/1CBpFLkw37E5aeYSG9RXMLTzOXUCdcn4m/view?usp=sharing

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Yrstruly2021 
I see no problem with your model, every table was connected using the correct column. It seems you didn't use dax to create the calendar table in Power BI Desktop.

 

Just some insights: you could also use the following dax to create a table:

Calendar table = Calendar(Date(2020,1,1), Today())

 

Then create other columns using dax, for example:

Year = Year([Date])
Day = Day([Date])

Weekday name= FORMAT([Date],"DDDD")
weekday= IF(WEEKDAY([Date],2)<=5,TRUE(),FALSE())
 
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@Yrstruly2021 
I see no problem with your model, every table was connected using the correct column. It seems you didn't use dax to create the calendar table in Power BI Desktop.

 

Just some insights: you could also use the following dax to create a table:

Calendar table = Calendar(Date(2020,1,1), Today())

 

Then create other columns using dax, for example:

Year = Year([Date])
Day = Day([Date])

Weekday name= FORMAT([Date],"DDDD")
weekday= IF(WEEKDAY([Date],2)<=5,TRUE(),FALSE())
 
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
Yrstruly2021
Helper V
Helper V

Is my data model correect in terms of relationships? https://drive.google.com/file/d/1CBpFLkw37E5aeYSG9RXMLTzOXUCdcn4m/view?usp=sharing 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors