Forum Discussion
Help comparing dates between tables
Use CONCATENATEX(EXCEPT( <filtered dates from A>, <filtered dates from B>),[Date],",")
- rdops6 years agoHelper III
Thanks Greg, I will try this one now to see if it works. Will report back (though not sure I understand how the filtered dates work but will give it a go). Thanks
- Greg_Deckler6 years agoCommunity Champion
rdops - If you have the names of the person in a visual then you could do something like:
VAR __Name = MAX('Table'[Name])
CONCATENATEX(
EXCEPT(
SELECTCOLUMNS(FILTER('Table1',[Name]=__Name),"Date",[Date]))
SELECTCOLUMNS(FILTER('Table2',[Name]=__Name),"Date",[Date]))
),
[Date],
","
)
So, basically, get me all the dates from table 1 and take away all of the dates from table 2 so now the ones left are the missing ones.
- rdops6 years agoHelper III
Thanks Greg.
I tried but couldnt make it work. I guess I am just to jr for the tool.
Thanks anyway