Forum Discussion
gerget
8 years agoFrequent Visitor
Dates Table Relationship
Dear all, I am having problems with creating a working relationship with the dates table I created in Power BI and unfortunately could not find a solution in the forum that worked for me. I hav...
- Anonymous8 years ago
Could you please share sample data of your invoices table here?
As other's post, does the createdon column contain datetime values and you manually change the data type of the column to date? If so, the above issue will occur. You can create a calculated columns using dax below. Then create relationship between the new column and date column of dates table.newCreatedon=DATE( YEAR(invoices[createdon]) , MONTH( invoices[createdon] ), DAY( invoices[createdon]))
Regards,
Lydia
Anonymous
8 years agoNot applicable
Could you please share sample data of your invoices table here?
As other's post, does the createdon column contain datetime values and you manually change the data type of the column to date? If so, the above issue will occur. You can create a calculated columns using dax below. Then create relationship between the new column and date column of dates table.
newCreatedon=DATE( YEAR(invoices[createdon]) , MONTH( invoices[createdon] ), DAY( invoices[createdon]))
Regards,
Lydia