Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
mugdhaojha
Contributor II
Contributor II

Link not getting created between master calendar and main table

Hi,

I am trying to develop a dashboard with ticket details and for that I have created a master calendar.

But somehow the master calendar is not getting linked to each incident number in the main table.I have checked the data and there are no records without the Reported date(field on which I have created the master calendar).

I have attached some screenshots of the issue.

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Make sure that the dates in your fact table and master calendar are dates and not timestamps. You can use the floor function to cut of the time part from timestamps if necessary: date(floor(TicketOpeningDate),'YYYY-MM-DD') as TicketOpeningDate


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

Make sure that the dates in your fact table and master calendar are dates and not timestamps. You can use the floor function to cut of the time part from timestamps if necessary: date(floor(TicketOpeningDate),'YYYY-MM-DD') as TicketOpeningDate


talk is cheap, supply exceeds demand
mugdhaojha
Contributor II
Contributor II
Author

Thanks alot..That worked!!