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 get an error "Sequence contains more than one matching element" when apllying.
There are only two tables in the report. One is created by code on dax
Solved! Go to Solution.
Solve problem. I save file to .pbip format and delete all files in SemanticModel\definition\tables\. In this folder was old defenition of tables.
Solve problem. I save file to .pbip format and delete all files in SemanticModel\definition\tables\. In this folder was old defenition of tables.
Double-check your DimDate table for duplicate date entries.
You can use the following DAX formula:
DuplicateDates =
VAR Dates =
DISTINCT(DimDate[Date])
RETURN
FILTER(
DimDate,
NOT(Dates = EARLIER(Dates))
)
Table DimDate added via this code:
there can't be duplicates.
@Anonymous Something is jacked up with that PBIX file. I would recommend turning off all preview features and then recreating that report from scratch. If I disable loading on the Table query and then try to delete the DimDate table, I still get that same error.
You could check the Issues forum or open a support ticket but something isn't right about that PBIX file.
I have attached the stack trace
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.