Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 48 | |
| 42 |