Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hi All
I have a DATE field , it return correct date.
I have create a master calendar table .
I have link sales table with master calendar.
But when i create a table , year field return null value.
Hope some can share with me where go wrong ?
My PBI sample file :-
https://www.dropbox.com/s/6cq0a9lfhyx8711/PBTI_V008.pbix?dl=0
Paul
Solved! Go to Solution.
This is because the date column you have here is text, which means the relationship does not work as expected.
Try redefining the column as VALUE ( SALES_I[AR Invoice Date] ) or
DATE (
RIGHT ( SALES_I[AR Invoice Date], 4 ),
LEFT ( SALES_I[AR Invoice Date], 2 ),
MID ( SALES_I[AR Invoice Date], 4, 2 )
)
and make sure the column type is date or date/time.
This is because the date column you have here is text, which means the relationship does not work as expected.
Try redefining the column as VALUE ( SALES_I[AR Invoice Date] ) or
DATE (
RIGHT ( SALES_I[AR Invoice Date], 4 ),
LEFT ( SALES_I[AR Invoice Date], 2 ),
MID ( SALES_I[AR Invoice Date], 4, 2 )
)
and make sure the column type is date or date/time.
appreciated very much , it work fine.
may i know it is possible to to remove the time stamp ? only display DD/MM/YYYY ? Now it display DD/MM/YYYY 00:00:00
Paul
Set it here:
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 28 | |
| 28 | |
| 19 | |
| 19 | |
| 19 |
| User | Count |
|---|---|
| 37 | |
| 29 | |
| 18 | |
| 17 | |
| 15 |