Forum Discussion
Help with Date intelligence
I tried to link the lodge date to date table. the lodge date is currently displayed as like 01/07/2026 11:06am and date will be displayed as 01/07/2026 12:00am. does it impact the join the displaying the result ?
Hi epang,
Yes, that will affect the relationship. Since Lodged Date contains a time value (11:06 AM) while your Calendar date is at midnight (12:00 AM), they are technically different values and won't match.
You can create a separate date-only column from Lodged Date and use that for the relationship:
Lodged Date Only = DATEVALUE('Cases'[Lodged Date])
Then create the relationship:
Calendar[Date] → Cases[Lodged Date Only]
Keep the original Lodged Date column for the time/details, but use the date-only column for the relationship and time-intelligence calculations.