Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I have four columns related to date, when I tried to mark as date table it shows error as date column must have unique columns and data column can't have gaps. Column contains identical dates since table is about sales, on single day n number of orders can be placed. can anyone suggest the solution.
@lona25
In order for you to mark a table as date table, there are some requirements:
It must have a column of data type date (or date/time)—known as the date column.
The date column must contain unique values.
The date column must not contain BLANKs.
The date column must not have any missing dates.
The date column must span full years. A year isn't necessarily a calendar year (January-December).
The date table must be marked as a date table.
And, you youcan obviously make a fact table as a date table as it breaks the above conditions.
The solution and the best approach is to create a separate dates table and create a relationship to your sales table. You can use the following DAX code to create your dates table, make necessary chagnes as needed.
Dates =
ADDCOLUMNS(
CALENDAR("01/01/2020","31/12/2021"),
"Month No" , MONTH([Date]),
"Month Name", FORMAT([Date],"Mmmm"),
"Year",YEAR([Date]),
"Year Month No", INT(FORMAT([Date],"yyyymm")),
"Year Month" , FORMAT([Date],"Mmm yyyy"),
"Quarter No", QUARTER([Date]),
"Quarter" , FORMAT([Date],"\QQ")
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group