Forum Discussion
lavina03
Helper I
10 years agoHow to Sync the dates from 2 different sources
HI, I need help on or possible way for my below scenario I have data coming from 2 different sources Source A shows - Resource booked on daily bases Source B shows - Resource log ho...
- Anonymous10 years ago
Yep, as along as your date types are date or date/time, it should work fine. Note *this* is the mode you are looking for...
Eric_Zhang
Microsoft Employee
10 years ago
To find out the missing dates, please follow the below steps.
- Create a calendar table.
DimDate = CALENDAR(MIN(sample_data[day]),MAX(sample_data[day]))
- Create a calculated table.
Missing Dates = FILTER(DimDate,ISBLANK(LOOKUPVALUE(sample_data[day],sample_data[day],DimDate[Date])))
Anonymous
10 years agoNot applicable
you should build a separate calendar table that has all dates, then create relationships to your other date related columns.