Merge two data sets by date, filling in missing dates in 1st table, power bi
I'd like to merge the two data sets by the date, keeping all the dates and filling in the totals col with NULL when the date doesn't match
EDIT: I’m working in Power BI
Data set 1
dates A_totals
2015-07-09 1
2015-07-10 1
2015-07-12 2
2015-07-14 4
2015-07-16 0
Data set 2
dates B_totals
2015-07-09 2
2015-07-11 5
2015-07-13 6
2015-07-15 9
2015-07-17 1
Desired Output
dates A_totals B_totals
2015-07-09 1 2
2015-07-10 1 null
2015-07-11 null 5
2015-07-12 2 null
2015-07-13 null 6
2015-07-14 4 null
2015-07-15 null 9
2015-07-16 0 null
2015-07-17 null 1
Topic powerbi
Category Data Science